分割字串(CString版本)_null

來源:互聯網
上載者:User

//根據多個分隔字元來分割字串

source 源串

seprator分隔字元

count分割後的子串數量

傳回值:分割後的子串

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

{intiSubStringCount,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);elsepstrSubStrings[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);//用完子串後釋放記憶體



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.