字符串分割经常用到,这里做一个记录。方便查阅。


1.使用strtok();其中

采用strtok(),分隔符可以是多种,如 * ,#中的一种或几种的组合

vector stringSplit(string s, const char * split)
{
	vector result;
	const int sLen = s.length();
	char *cs = new char[sLen + 1];
	strcpy(cs, s.data());
	char *p;

	p = strtok(cs, split);
	while (p)
	{
		printf("%s\n", p);
		string tmp(p);
		result.push_back(tmp);
		p = strtok(NULL, split);
	}
	return result;
}


2.使用string.substr();其中

采用string.substr(),分隔符只能是一种,如 * ,#中的一种

vector vec;
int j = 0;
for (int i = 0; i