用指定的字符串替换源字符串中的子字符串。
void string_replace(string & strBig, const string & strsrc, const string &strdst)
{
string::size_type pos = 0;
string::size_type srclen = strsrc.size();
string::size_type dstlen = strdst.size();
while ((pos = strBig.find(strsrc, pos)) != string::npos)
{
// 如果能找到 pos
strBig.replace(pos, srclen, strdst);
pos += dstlen;
}
}