Answers for "c++ string tostring"

C++
95

tostring c++

#include <string> 

std::string s = std::to_string(42);
Posted by: Guest on February-28-2020
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

Browse Popular Code Answers by Language