wa123344 发表于 2024-3-27 10:40:48

C++ MFC CString 字符串转BYTE数组


C++ MFC CString 字符串转BYTE数组

代码:
BOOL CStringToByte(CString scrData,int lengh)
{

    BYTE data = new BYTE();

      for (int i = 0;i < lengh; i++)
      {
                CString temp;
                int slengh = 0;

                temp = scrData.Mid(0,1);

                slengh = scrData.GetLength();

                scrData=scrData.Right(slengh-1);

                data =(BYTE) _tcstoul(temp,NULL,16);//字符转为16进制
      }

      return TRUE;
}
页: [1]
查看完整版本: C++ MFC CString 字符串转BYTE数组