字符串操作--宽窄字符转换

MultiByteToWideChar
  int MultiByteToWideChar(
    _In_      UINT   CodePage,
    _In_      DWORD  dwFlags,
    _In_      LPCSTR lpMultiByteStr,
    _In_      int    cbMultiByte,
    _Out_opt_ LPWSTR lpWideCharStr,
    _In_      int    cchWideChar
  );
  参数描述:
    CodePage:常用CP_ACP、CP_UTF8
    dwFlags:0
    lpMultiByteStr [in]:
        指向待转换字符串。
    cbMultiByte [in]:
        lpMultiByteStr "以字节规格计算"的大小。
        设置 0,函数失败;
        设置 -1,函数处理整个字符串,包括\0字符串,导致宽字符串也会带有\0字符,返回的长度也包含\0的长度;
        设置 >0,根据是否包含\0,返回的结果也会相应调整。
    lpWideCharStr [out, optional]:
        指向接收宽字符串的缓冲区。
    cchWideChar [in]:
        lpWideCharStr 指向的缓冲区"以字符规格计算"的大小。
        设置 0,使 lpWideCharStr 无效,并使得函数返回所需"以字符规格计算"的大小。
Code:
  int requiredBufSize = MultiByteToWideChar(CP_ACP, 0, src, -1, NULL, 0);
  if (requiredBufSize > 0)
  {
      WCHAR *pBuffer = new WCHAR[requiredBufSize];
      MultiByteToWideChar(CP_ACP, 0, src, -1, pBuffer, requiredBufSize);
  }
WideCharToMultiByte
  int WideCharToMultiByte(
    _In_      UINT    CodePage,
    _In_      DWORD   dwFlags,
    _In_      LPCWSTR lpWideCharStr,
    _In_      int     cchWideChar,
    _Out_opt_ LPSTR   lpMultiByteStr,
    _In_      int     cbMultiByte,
    _In_opt_  LPCSTR  lpDefaultChar,
    _Out_opt_ LPBOOL  lpUsedDefaultChar
  );
  参数描述:
    lpDefaultChar [in, optional]:NULL
    lpUsedDefaultChar [out, optional]:NULL
    其它参数参考 MultiByteToWideChar
Code:
  int requiredBufSize = WideCharToMultiByte(CP_ACP, 0, src, -1, NULL, 0, NULL, NULL);
  if (requiredBufSize > 0)
  {
      char *pBuffer = new char[requiredBufSize];
      WideCharToMultiByte(CP_ACP, 0, src, -1, pBuffer, requiredBufSize, NULL, NULL);
  }

转载于:https://www.cnblogs.com/yipingg/p/string_widechar_multichar_switch.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值