Is it possible to convert UTF8 string in a std::string to std::wstring and vice versa in a platform independent manner? In a Windows application I would use MultiByteToWideChar and WideCharToMultiByte. However, the code is compiled for multiple OSes and I'm limited to standard C++ library.
|
9
|
|||||||
|
|
|
You can extract Their usage example:
Look for |
||||
|
|
|
There are several ways to do this, but the results depend on what the character encodings are in the If you know the
If your If your |
||
|
|
|
You can use the |
||
|
|
|
|
Come on, people - the problem definition explicitly states that the 8-bit character encoding is UTF-8. This is a trivial problem; if you wrote it yourself, the code probably wouldn't be more than a dozen lines. Unfortunately I don't have time to code it right now. Just look at the encodings on these Wikipedia pages for UTF-8 and UTF-16. Edit: I may have been guilty of a little bit of hyperbole. Certainly the code is more than a dozen lines; I've been bit-twiddling all my life, so maybe this seems simpler to me than it really is. The principle is simple - go through the input and assemble a 32-bit Unicode code point according to one UTF spec, then emit the code point according to the other spec. The individual code points need no translation, as would be required with any other character encoding; that's what makes this a simple problem. Here's a quick implementation of UTF-16 to UTF-8 conversion. Note this code is untested.
|
||||||||||
|
|
|
I don't think there's a portable way of doing this. C++ doesn't know the encoding of its multibyte characters. As Chris suggested, your best bet is to play with codecvt. |
||
|
|
|
|
This code is tested |
||
|
|
