资 源 简 介
int CFileFun::SplitCString(CString strIn, CStringArray& strAryRe, LPCTSTR lpstr){ASSERT(lpstr);strAryRe.RemoveAll();int len1 = strIn.GetLength();int len2 = _tcslen(lpstr);if (0 == len1 || 0 == len2){return 0;}int pos1 = 0, pos2 = 0;while ((pos2 = strIn.Find(lpstr, pos1)) != -1){strAryRe.Add(strIn.Mid(pos1, pos2 - pos1));pos1 = pos2 + len2;}//加上最一个...if (len1 > pos1 + 1){strAryRe.Add(strIn.Mid(pos1));}return strAryRe.GetSize();}