u8string to wstring (1) 썸네일형 리스트형 UTF-8 string to wstring #include #include // convert UTF-8 string to wstring std::wstring utf8_to_wstring (const std::string& str) { std::wstring_convert myconv; return myconv.from_bytes(str); } // convert wstring to UTF-8 string std::string wstring_to_utf8 (const std::wstring& str) { std::wstring_convert myconv; return myconv.to_bytes(str); } 이전 1 다음