我想用text=s_o_m_e=text
text=s-o-m-e=text
我有一个开始和结束索引:
std::string str("text=s_o_m_e=text");
std::string::size_type start = str.find("text="), end;
if (start != std::string::npos) {
end = str.find("=", start);
if (end != std::string::npos) {
//...
}
}
所以,我正在寻找这样的功能:
replaceAll(string, start, end, '_', '-');
UP:
std::replace(str.begin() + start, str.begin() + end, '_', '-');
谢谢,Blastfurnace
答案 0 :(得分:10)
<algorithm>
中有一个功能。
std::replace(str.begin(), str.end(), '_', '-');
答案 1 :(得分:5)
使用std::replace
。 Here是更多详情。