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

字符串处理,取出按指定分割符号(非空格)进行字符串切割

时间:2018-08-06 19:18:10      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:cto   字符串切割   ack   code   串处理   符号   char   line   void   

void split(const string &s, char delim, vector<string> &elems) {
    stringstream ss(s);
    string item;
    while (getline(ss, item, delim)) {
        elems.push_back(item);
    }
   // return elems;
}

 

字符串处理,取出按指定分割符号(非空格)进行字符串切割

标签:cto   字符串切割   ack   code   串处理   符号   char   line   void   

原文地址:https://www.cnblogs.com/yuguangyuan/p/9431891.html

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