replacing a string char with another in c++ code example
Example 1: c++ replace character in string
#include <algorithm>
#include <string>
void some_func() {
std::string s = "example string";
std::replace( s.begin(), s.end(), 'x', 'y'); // replace all 'x' to 'y'
}
Example 2: replace a char in string c++ at a specific index
string a = "lol";
a[2] = 'j';
cout << a;
//output: loj