首页 > 其他 > 详细

分解字符串

时间:2018-05-04 16:50:07      阅读:212      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!