VC 6.0 统计字符串中英文字符个数,统计时将判断中英文字符个数,分别统计有多少个字符:   UpdateData(TRUE);   //获得字符串按字节数计算的长度   int Lenth = m_strTxt.GetLength();   int nELenth = 0;//英文字符数   int nCLenth = 0;//中文字符数   int nTotalLenth = 0;//总共字符数   for(int i=0;i  {    char c = m_strTxt.GetAt(i);    //是中文字符    if(c255)    continue;