int nLen;
CString str,msg = "ab我的c";
nLen = MultiByteToWideChar(CP_ACP,MB_PRECOMPOSED,msg,-1,NULL,0) - 1;//6  nLen = msg.Find("的"); str.Format("%d",nLen);
AfxMessageBox(str);
我已经转换为宽字符了,为何find还返回4?