I changed my class to use std::string (based on the answer I got here but a function I have returns wchar_t *. How do I convert it to std::string?
I tried this:
std::string test = args.OptionArg();
but it says error C2440: 'initializing' : cannot convert from 'wchar_t *' to 'std::basic_string<_Elem,_Traits,_Ax>'
Following code is more concise:
This is an old question, but if it's the case you're not really seeking conversions but rather using the TCHAR stuff from Mircosoft to be able to build both ASCII and Unicode, you could recall that std::string is really
So we could define our own typedef, say
Then you could use
magic::string
withTCHAR
,LPCTSTR
, and so forthjust for fun :-):
You can convert a wide char string to an ASCII string using the following function:
Be aware that this will just replace any wide character for which an equivalent ASCII character doesn't exist with the
dfault
parameter; it doesn't convert from UTF-16 to UTF-8. If you want to convert to UTF-8 use a library such as ICU.You could just use
wstring
and keep everything in Unicode