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

C++分割string字符串(转)

时间:2019-11-17 11:03:25      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:color   str   code   article   details   vector   style   log   ngx   

原文链接:https://blog.csdn.net/jirryzhang/article/details/80473032

或:https://www.cnblogs.com/dingxiaoqiang/p/8228390.html

vector<string> split(const string& str, const string& pattern)
{
    vector<string> ret;
    if(pattern.empty()) return ret;
    size_t start=0,index=str.find_first_of(pattern,0);
    while(index!=str.npos)
    {
        if(start!=index)
            ret.push_back(str.substr(start,index-start));
        start=index+1;
        index=str.find_first_of(pattern,start);
    }
    if(!str.substr(start).empty())
        ret.push_back(str.substr(start));
    return ret;
}

C++分割string字符串(转)

标签:color   str   code   article   details   vector   style   log   ngx   

原文地址:https://www.cnblogs.com/jixiaohua/p/11875362.html

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