我想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, '_', '-');
向上:
std::replace(str.begin() + start, str.begin() + end, '_', '-');
谢谢,高炉