分割字符串(CString版本)

//根据多个分隔符来分割字符串

source 源串

seprator分隔符

count分割后的子串数量

返回值:分割后的子串

CString* ExtractStr(LPCTSTR source, LPCTSTR seprator, int *count)

{
	int		iSubStringCount,nIndex=0;
	CString strSource=source,strSeperator=seprator,*pstrSubStrings;

	if(strSeperator.GetLength()==0)
	{
		*count=0;
		return NULL;
	}

	//seprator中的所有分隔符全部替换成第一个,并统计source中seprator的个数
	iSubStringCount =1;

	for(int i=0;i<strSource.GetLength();i++)
	{
		if(strSource[i]==strSeperator[0])
			iSubStringCount++;
	}

	for(int i=1;i<strSeperator.GetLength();i++)
	{
		iSubStringCount+=strSource.Replace(strSeperator[i],strSeperator[0]);
	}

	pstrSubStrings=new CString[iSubStringCount];

	int nNewIndex,nCount=0;
	while(nIndex<strSource.GetLength())
	{
		nNewIndex=strSource.Find(strSeperator[0],nIndex);
		if(nNewIndex>=0)
			pstrSubStrings[nCount++]=strSource.Mid(nIndex,nNewIndex-nIndex);
		else
			pstrSubStrings[nCount++]=strSource.Mid(nIndex);

		nIndex+=pstrSubStrings[nCount-1].GetLength()+1;
	}

	*count=iSubStringCount;
	return pstrSubStrings;
}

//释放内存

void FreeStrings(CString *lpstr, int count)
{
	if(lpstr==NULL || count<=0)
	{
		return;
	}

	delete[] lpstr;
}

例子:

CString strSample=TEXT("aa,bb,cc,dd");
int nCount=0;
CString pSubStrings=ExtractStr(strSample,TEXT(","),&nCount);
....
FreeStrings(pSubStrings,nCount);//用完子串后释放内存



评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值