C++字串處理的一個例子:1.查詢一個字元在字串中第n次出現的位置。2分割字串

pengfoo發表於2014-05-14

直接上原始碼:

 

//查詢一個字元在一個字串中第n次出現的位置
int findNstPositon(char *str,char c,int n)
{
	char *p = str;
	int index = 0;
	int count = 0;

	while(*p != '\0')
	{
		if(*p == c)
		{
			count ++;
		}
		if(count < n)
		{
			p++;
			index++;
		}else {
			break;
		}

	}
	return index;

}

//以指定的字元分割字串,並將分割後的字串組放入vector<string> 中
void 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;
		}
	}while(index != string::npos);

	//the last token
	substring = str.substr(start);
	dest.push_back(substring);
}

相關文章