Answers for "how to convert é to wstring c++"

C++
1

c++ string to wstring

int StringToWString(std::wstring &ws, const std::string &s)
{
    std::wstring wsTmp(s.begin(), s.end());

    ws = wsTmp;

    return 0;
}
Posted by: Guest on December-06-2021
-1

string to wstring conversion c++

string str = DATA_DIR;
std::wstring temp(L"%s",str);
Posted by: Guest on February-24-2021

Code answers related to "how to convert é to wstring c++"

Browse Popular Code Answers by Language