How do I convert a string in UTF-8 char* to CString?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Call |
|||||||||||||
|
|
If your string contains only ASCII-characters with codes 0 to 127 you may threat your UTF-8 string as ASCII string and initialise CString with it:
Otherwise (if your UTF-8 string contains some other characters) you have no easy way to get char* string from it. |
|||||||||||
|
Though this function is valid for both UNICODE and non-UNICODE configurations IMHO using UNICODE configuration in Win32 programs is much more productive (in general and in this function). |
|||||||||
|