How to replace all occurrences of a character in string?

big-z picture big-z · May 24, 2010 · Viewed 525.8k times · Source

What is the effective way to replace all occurrences of a character with another character in std::string?

Answer

Kirill V. Lyadvinsky picture Kirill V. Lyadvinsky · May 24, 2010

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 'x' to 'y'
}