string 字符串替換

void StringReplace(string &str, string srcSubStr, string decSubStr) { int iPos = 0; while (str.find(srcSubStr, iPos) != string::npos) { iPos = str.find(srcSubStr, iPos); st
相關文章
相關標籤/搜索