16,551
社区成员
发帖
与我相关
我的任务
分享
CString str = "a爱bv";
for(int i=0;i<str.GetLength();i++)
{
char c = str.GetAt(i);
if((unsigned char)t > (unsigned char)127)
MessageBox("有汉字出现");
}
