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

split string

时间:2016-08-14 11:32:21      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

void split(const std::string& src, const std::string& sq, StringVec& dstVec)

{

        dstVec.clear();

        std::string::size_type pos = 0;

        std::string::size_type pre = 0;

        for(;pos < src.size();pre = pos + sq.size())

        {

                pos = src.find(sq, pre);

                dstVec.push_back(src.substr(pre, pos - pre)

        }

        

        if(src.empty())

        {

                dstVec.push_back(src);

       }

}

 

 

                

split string

标签:

原文地址:http://www.cnblogs.com/streams/p/5769592.html

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