我想text=s-o-m-e=text
喜歡的replaceAll替換字符(字符串,開始,結束, '_', ' - ')
替換字符串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:
謝謝,Blastfurnace
[此問題]的完全重複(http://stackoverflow.com/questions/2896600/how-to-replace-all-occurrences-of-a-character-in-string)。 –