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

字符串查找匹配

时间:2014-06-10 20:35:36      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   tar   string   art   

vector<string> split(const string& src, const string& separator)

{

vector<string>dest;

string str = src;

string substring;

string::size_type start = 0, index;

 

do

{

index = str.find_first_of(separator,start);

if (index != string::npos)

{

substring = str.substr(start,index-start);

dest.push_back(substring);

start = str.find_first_not_of(separator,index);

if (start == string::npos) return dest;

}

}while(index != string::npos);

 

//the last token

substring = str.substr(start);

dest.push_back(substring);

 

return dest;

}

字符串查找匹配,布布扣,bubuko.com

字符串查找匹配

标签:des   style   class   tar   string   art   

原文地址:http://www.cnblogs.com/lh92lxm/p/3779442.html

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