- wstring Utf8ToUnicode(const string &utf8_str)
- {
- int len;
- len = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)utf8_str.c_str(), -1, NULL,0);
- WCHAR * wszUnicode = new WCHAR[len+1];
- memset(wszUnicode, 0, len * 2 + 2);
- MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)utf8_str.c_str(), -1, wszUnicode, len);
- wstring unicodeWstring(wszUnicode);
- delete wszUnicode;
- return unicodeWstring;
- }
utf8转unicode
最新推荐文章于 2024-11-08 10:50:32 发布