附:去掉空格方法 CString str("e w r we 中华ADF 华AG中"); newstr=str.Replace(" ", "");//第一个参数是空格,第二个参数是空字符串. int i_find=str.Find(newstr.Left(1)); 双字节:CString str(L"e w r we 中华ADF 华AG中");str.Remove(L' '); //str = L"ewrwe中华
(1) char*转换成CString 若将char*转换成CString,除了直接赋值外,还可使用CString::Format进行.例如: char chArray[] = "This is a test"; char * p = "This is a test"; 或 LPSTR p = "This is a test"; 或在已定义Unicode应的用程序中 TCHAR * p = _T("This is a test"