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

分解字符串

时间:2018-05-04 17:11:19      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:切割字符串

void str_split(const std::string& src, const std::string& sep, std::vector<std::string>& dst) {
std::string s;

for (std::string::const_iterator it = src.begin(); it != src.end(); it++)
{
    if (sep.find(*it) != std::string::npos)
    {
        if (s.length())
        {
            dst.push_back(s);
        }

        s.clear();
    }
    else
    {
        s += *it;
    }
}

if (s.length())
{
    dst.push_back(s);
}

}

例如:src = abcdefgh 碰到cf 字符串中的任意字符就切割 sep = cf 得到结果 dst = ‘ab‘, ‘de‘ , ‘gh‘

分解字符串

标签:切割字符串

原文地址:http://blog.51cto.com/wenxuehui/2112701

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