-
[C++] std::string convert std::wstring프로그래밍/C++ 2019. 5. 14. 00:08
std::string -> std::wstring
std::string str = "I want convert this string";
std::wstring wstr;
str.assign(wstr.begin(), wstr.end());std::wstring -> std::string
std::wstring wstr = "I want convert this string";
std::string str;
wstr.assign(str.begin(), str.end());'프로그래밍 > C++' 카테고리의 다른 글
[c++, VS2013] Visual Studio 2013 Error: c4996 this function or variable may be unsafe (0) 2019.05.24 [C++, rapidjson] AddMember 시의 형변환 문제 (0) 2019.05.14 [MFC] CString <-> LPCSTR 변환 (0) 2016.12.24 [MFC] CString 문자열의 Delete 함수 (0) 2016.12.20 C++ error LNK2038 관련 불일치가 검색되었습니다 라는 메시지. (0) 2016.12.14