C++ 用字符串分割字符串

最近学习使用C++写点工具,遇到了字符串分割的问题,上网搜索了几个例程,都是采用单个字符分割字符串,不是我想要的,于是自己动手写了一个split函数:

#include <iostream>
#include <string>
#include <vector>

using namespace std;

vector<string> strSplit (const string &strOrig, const string &delim)
{
	vector<string> vecResult;

	int intLen_d = delim.length();
	if (intLen_d > 0)
	{
		string::size_type pos;
		string strTemp;
		int intLen_s = strOrig.length();
		for(int i = 0; i <= intLen_s; i++)
		{
			pos = strOrig.find(delim, i);
			if (pos > intLen_s) pos = intLen_s;

			strTemp = strOrig.substr(i, pos - i);
			vecResult.push_back(strTemp);
			i = pos + intLen_d - 1;
		}
	}
	else vecResult.push_back(strOrig);
	return vecResult;
}

int main()
{
	string t1 = "......";
	vector<string> tx;
	tx = strSplit(t1, "...");
	for(int i = 0; i < tx.size(); i++)
	{
		cout << tx[i] << endl;
	}
	return 0;
}

以上代码测试用字符串“...”(3个小数点)分割字符串“......”(6个小数点)得到的向量由3个空字符组成["", "" ,""],这就是我想要的结果。顺便提一句,这和python的split函数运行结果一致。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值