码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 字符串分割函数 str_split

时间:2018-01-14 18:37:13      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:find   bsp   push   length   字符串   art   body   oid   pre   

void str_split(const std::string & src, const std::string & sep, std::vector<std::string> & vec_str)
{
    std::string::size_type start = 0;
    for(std::string::size_type end = src.find(sep, start); end != std::string::npos; end = src.find(sep, start))
    {
        if(end > start)
        {
            vec_str.push_back(src.substr(start, end - start));
        }
        start = end + sep.length();
    }
    if(start < src.length())
    {
        vec_str.push_back(src.substr(start, src.length() - start));
    }
}

 

C++ 字符串分割函数 str_split

标签:find   bsp   push   length   字符串   art   body   oid   pre   

原文地址:https://www.cnblogs.com/tangxin-blog/p/8283765.html

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