Hello, anyone familiar with ansiString?
Have a problem involving a string "1 1", should read "11".
I want to get rid of the space in the middle. Can't change it to a character string or std::string so that isn't an option. Will i have to compare each character inturn with " "?
Using ansiString.Pos(" ") to get position of the " ", but how should i go about removing the space and replacing it with the next character?