std::string 字符串替换

std::string 没有原生的字符串替换函数,需要自己来完成

 string& replace_str(string& str, const string& to_replaced, const string& newchars)
{
for(string::size_type pos(); pos != string::npos; pos += newchars.length())
{
pos = str.find(to_replaced,pos);
if(pos!=string::npos)
str.replace(pos,to_replaced.length(),newchars);
else
break;
}
return str;
}
上一篇:asp于Server.MapPath用法


下一篇:bootstrap validator 使用 带代码