How to replace all occurrences of a character in string?

What is the effective way to replace all occurrences of a character with another character in std::string? 17 s 17 std::string doesn’t contain such function but you could use stand-alone replace function from algorithm header. #include <algorithm> #include <string> void some_func() { std::string s = “example string”; std::replace( s.begin(), s.end(), ‘x’, ‘y’); // replace all … Read more