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

字符串分割函数

时间:2014-11-19 23:44:19      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   os   sp   strong   文件   on   div   

实现字符串按特定分隔符(, \t)进行分割,并将分割的后的字符串存在到vector中,用于处理txt、csv等格式的文件。

void split_string(const string & str, vector<string> & str_vec, char delimiter)
{
	if (str.empty())
		return;
	std::string::size_type pos = 0;
	std::string::size_type pre_pos = 0;
	while((pos = str.find_first_of(delimiter,pos)) != std::string::npos)
	{
		string tmp_str = str.substr(pre_pos,pos - pre_pos);
		str_vec.push_back(tmp_str);
		pre_pos = ++pos;
	}
	string tmp_str;
	if (pre_pos < str.size())
	{
		tmp_str = string(&str[pre_pos]);
	}
	str_vec.push_back(tmp_str);
}

 

字符串分割函数

标签:style   blog   ar   os   sp   strong   文件   on   div   

原文地址:http://www.cnblogs.com/cmranger/p/4109283.html

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