mfc中的字符串

获取字符串中的汉字

1.新建一个基于对话框的应用程序

2.向对话框中添加两个编辑框ID分别为IDC_EDIT1,IDC_EDIT2

3.添加一个按钮控件,双击按钮为按钮添加代码:

void CMy1Dlg::OnBnClickedButton1()
{
     
 CString str0, str1, str2;
 GetDlgItem(IDC_EDIT1)->GetWindowText(str0);
 for (int i = 0; i < str0.GetLength(); i++)
 {
     
  char a = str0.GetAt(i);
  if (IsDBCSLeadByte(a))
  {
     
   str1 = str0.Mid(i, 2);
   i++;
   str2 += str1;
  }
 }
 GetDlgItem(IDC_EDIT2)->SetWindowText(str2);
}

mfc中的字符串_第1张图片

你可能感兴趣的:(mfc中的字符串)