There's an off-by-one bug sitting there right in the middle: Take a look at what happens if the first character is a comma: ",abc,def,ghi": I'm assuming the desired output would be "\,abc\,def\,ghi", but instead you get the original string back:
int occurenceInd = originalString.Find(charFind, currentInd);
OccurrenceInd returns 0, since it found charFind at the first character.
if(occurenceInd>0)
0 isn't greater than 0, so take the else branch and return the original string. CString::Find returns -1 when it can't find something, so at the very least that comparison should be:
if(occurrenceInd >= 0)
The best way would be to use the Replace function, but if you want to do it by hand, a better implementation would probably look something like this:
CString insert_escape ( const CString &originalString, char charFind, char charInsert ) {
std::string escaped;
// Reserve enough space for each character to be escaped
escaped.reserve(originalString.GetLength() * 2);
for (int iOriginal = 0; iOriginal < originalString.GetLength(); ++iOriginal) {
if (originalString[iOriginal] == charFind)
escaped += charInsert;
escaped += charFindoriginalString[iOriginal];
}
return CString(escaped.c_str());
}
