码迷,mamicode.com
首页 > 其他好文 > 详细

cocos2dx开发之util类&方法——字符串替换

时间:2015-03-02 20:38:45      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

/*将originStr字符串中的searchStr替换成replaceStr*/
std::string str_replace(std::string originStr,std::string searchStr,std::string replaceStr){
    std::string::size_type pos = 0; 
    while((pos = originStr.find(searchStr, pos)) != std::string::npos) {
        originStr.replace(pos, searchStr.size(), replaceStr);
        pos++;
    }
    return originStr;
}

 

cocos2dx开发之util类&方法——字符串替换

标签:

原文地址:http://www.cnblogs.com/xyida/p/4309534.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!