MFC four ways to separate strings

Source: Internet
Author: User

Vector<cstring> splitcstring (CString strsource, CString ch)
{
Vector <CString> vecstring;
int iPos = 0;
CString strtmp;
strtmp = Strsource.tokenize (Ch,ipos);
while (Strtmp.trim ()! = _t (""))
{
Vecstring.push_back (strtmp);
strtmp = Strsource.tokenize (Ch,ipos);
}
return vecstring;
}vector<cstring> splitcstring (CString strsource, Char ch)
{
CString strtmp;
Vector<cstring> vecstring;
int n=-1;
N=strsource.find (CH);
while (N!=-1)
{
Strtmp=strsource.left (N)
Vecstring.push_back (strtmp);
Strsource=strsource.left (strsource.getlenth-n+1)
N=strsource.find (CH);
}
return vecstring;
}
Vector<cstring> splitcstring (CString strsource, Char ch)
{
CString strtmp;
Vector<cstring> vecstring;
int ipos=0;
while (Afxextractsubstring (strtmp,strsource,ipos,ch))
{
ipos++;
Vecstring.push_back (strtmp);
}
return vecstring;
}
Vector<cstring> splitcstring (CString strsource, Char ch)
{
Vector<cstring> vecstring;
CString Strtmp=strtok ((LPSTR) (LPCTSTR) strsource,ch);//(LPSTR) (LPCTSTR) CString to char*
while (1)
{
Strtmp=strtok (NULL,CH);
if (strtmp==_t (""))
Break
Strtmp.trimleft ();
Vecstring.push_back (strtmp);
}
}

MFC four ways to separate strings

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.