首页 > 代码库 > 遍历一个字符串中的字符

遍历一个字符串中的字符

CString    cstr;
char    buf;
for(int i =0;i < cstr.GetLength();i++)
{
    buf = cstr.GetAt(i);
    CString    strTemp="";
    if(buf < 0 || buf > 127)
    {
        strTemp = cstr.Mid(i,2);//中文字符占 2 个字节,
                    //CString.Mid(i,nCount)从字符串第 i 个字符开始取 nCount个字符
        ++i;
    }
    else
    {
        strTemp = buf;//英文字符直接赋值
    }
    if(strTemp.Compare("要比较的符号") == 0)//==0 表示匹配成功
    {
        CString outstr;
        outstr.Format("字符串含有要比较的字符%s",strTemp);        
    }
}

遍历一个字符串中的字符