I have a situation where I need to compare a char* with a WideString. How do I convert the WideString to a char* in C++?
|
feedback
|
|
You can use the wcstombs function. size_t wcstombs ( char * mbstr, const wchar_t * wcstr, size_t max ); | |||
feedback
|
|
| |||||||
feedback
|
|
Not possible. Actually, you mixed two different concepts:
Please see my answer to http://stackoverflow.com/questions/1049947/should-utf-16-be-considered-harmful about how to properly handle text. | |||||||
feedback
|
|
To compare a
In fact, as long as the
To convert a
| |||
feedback
|
chartype until it is wide enough? ;-) Since thechartype is smaller than the type used for a WideString, the better method is to convert the smaller to the larger then compare. – Thomas Matthews Dec 18 '09 at 0:33