一个简单的分解字符串的方法:
Code
vector<CString> CUtils::Split(const CString strSrc,const TCHAR splitChar)
{
vector<CString> vstr;
CString _str(strSrc);
INT pos;
while ((pos = _str.Find(splitChar))!= - 1)
{
vstr.push_back(_str.Left(pos));
_str = _str.Right(_str.GetLength()-(pos+1));
}
vstr.push_back(_str);
return vstr;
}
posted @
2008-12-31 16:40
Christmas
阅读(
234)
评论()
编辑
收藏
举报