What is the effective way to replace all occurrences of a character with another character in std::string?
|
|
|
|
|||||||||||||||||||
|
|
A simple find and replace for a single character would go something like:
To do this for the whole string, the easy thing to do would be to loop until your |
|||||||||||||
|
|
I thought I'd toss in the boost solution as well:
|
||||
|
|
|
As Kirill suggested, either use the replace method or iterate along the string replacing each char independently. Alternatively you can use the |
|||
|
|