c++ std string replaceAll函数
std 提供的string的replace方法,不太方便,只可以字符替换
#include <iostream> // std::cout
#include <algorithm> // std::replace
#include <string>
using namespace std;
int main () {
string str = "hello world my name is kun";
replace(str.begin(), str.end(), ' ', '_');
cout << str;
return 0;
}
这里可以使用字符串替换
string replaceAll(string &str, string oldStr, string newStr){
string::size_type pos = str.find(oldStr);
while(pos != string::npos){
str.replace(pos, oldStr.size(), newStr);
pos = str.find(oldStr);
}
return str;
}