I've been looking for a way to convert between the Unicode string types and came across this method. Not only do I not completely understand the method (there are no comments) but also the article implies that in future there will be better methods.

If this is the best method, could you please point out what makes it work, and if not I would like to hear suggestions for better methods.

link|improve this question

1  
feedback

2 Answers

up vote 12 down vote accepted

@RaphaelR mbstowcs and wcstombs don't necessarily convert to UTF-16 or UTF-32, they convert to wchar_t and whatever encoding the platform declares for wchar_t. Windows uses a two byte wchar_t and UTF-16 as the encoding, but the other major platforms and many obscure ones use a 4-byte wchar_t with UTF-32. (And technically UTF-16 does not comply with the C or C++ standard's requirements for a wchar_t encoding). So wchar_t seems to me to be a bad choice for portability and Unicode.

Some better options have been introduced in C++11; new specializations of std::codecvt, new codecvt classes, and a new template to make using them for conversions very convienent.

First the new template class for using codecvt is std::wstring_convert. Once you've created an instance of a std::wstring_convert class you can easily convert between strings:

std::wstring_convert<...> convert; // ... filled in with a codecvt to do UTF-8 <-> UTF-16
std::string utf8_string = u8"This string has UTF-8 content";
std::u16string utf16_string = convert.from_bytes(utf8_string);
std::string another_utf8_string = convert.to_bytes(utf16_string);

In order to do different conversion you just need different template parameters, one of which is a codecvt facet. Here are some new facets that are easy to use with wstring_convert:

std::codecvt_utf8_utf16<char16_t> // converts between UTF-8 <-> UTF-16
std::codecvt_utf8<char32_t> // converts between UTF-8 <-> UTF-32
std::codecvt_utf8<char16_t> // converts between UTF-8 <-> UCS-2 (warning, not UTF-16! Don't bother using this one)

Examples of using these:

std::wstring_convert<std::codecvt_utf8_utf16<char16_t>,char16_t> convert;
std::string a = convert.to_bytes(u"This string has UTF-16 content");
std::u16string b = convert.from_bytes(u8"blah blah blah");

The new std::codecvt specializations are a bit harder to use because they have a protected destructor. To get around that you can define a subclass that has a destructor, or you can use the std::use_facet template function to get an existing codecvt instance. Also, an issue with these specializations is you can't use them in Visual Studio 2010 because template specialization doesn't work with typedef'd types and that compiler defines char16_t and char32_t as typedefs. Here's an example of defining your own subclass of codecvt:

template <class internT, class externT, class stateT>
struct codecvt : std::codecvt<internT,externT,stateT>
{ ~codecvt(){} };

std::wstring_convert<codecvt<char16_t,char,std::mbstate_t>,char16_t> convert16;
std::wstring_convert<codecvt<char32_t,char,std::mbstate_t>,char32_t> convert32;

The char16_t specialization converts between UTF-16 and UTF-8. The char32_t specialization, UTF-32 and UTF-8.

Note that these new conversions provided by C++11 don't include any way to convert directly between UTF-32 and UTF-16. Instead you just have to combine two instances of std::wstring_convert.

link|improve this answer
Thank you very much for such an in-depth response, this is exactly what I was looking for. Could I just confirm that UTF-16 to UTF-32 would require UTF-16 to UTF-8 and then to UTF-32? – DrYap Aug 30 '11 at 7:51
Yes, you have to go through UTF-8. – bames53 Aug 30 '11 at 16:03
Actually, there may be a way to go directly between UTF-16 and UTF-32, but I haven't used it so I'm not sure of all the details. Take a look at another C++11 facet: codecvt_utf16. – bames53 Aug 30 '11 at 16:23
I had a go at doing this but I had a problem with wstring_convert not existing. Does this not work with g++ yet? – DrYap Aug 31 '11 at 13:40
Unfortunately it appears that stdlibc++ hasn't gotten this far even in its latest version. I guess this is what the article you linked to was saying. So the thing that makes the code in that article work is that stdlibc++'s std::codecvt can use libiconv. Take a look at that guy's Converter.h and look at EncSt, codecvt_type, and how EncSt state is initialized. – bames53 Aug 31 '11 at 20:39
show 3 more comments
feedback

As far as I know, C++ provides no standard methods to convert from or to UTF-32. However, for UTF-16 there are the methods mbstowcs (Multi-Byte to Wide character string), and the inverse, wcstombs.

If you need UTF-32 too, you need iconv, which is in POSIX 2001 but not in standard C, so on Windows you'll need a replacement like libiconv.

Here's an example on how to use mbstowcs:

#include <string>
#include <iostream>
#include <stdlib.h>

using namespace std;

wstring widestring(const string &text);

int main()
{
  string text;
  cout << "Enter something: ";
  cin >> text;

  wcout << L"You entered " << widestring(text) << ".\n";
  return 0;
}

wstring widestring(const string &text)
{
  wstring result;
  result.resize(text.length());
  mbstowcs(&result[0], &text[0], text.length());
  return result;
}

The reverse goes like this:

string mbstring(const wstring &text)
{
  string result;
  result.resize(text.length());
  wcstombs(&result[0], &text[0], text.length());
  return result;
}

Nitpick: Yes, I know, the size of wchar_t is implementation defined, so it could be 4 Bytes (UTF-32). However, I don't know a compiler which does that.

link|improve this answer
2  
GCC on Linux uses UTF-32 for wchar_t. – dan04 Aug 29 '11 at 17:12
2  
So far as I know, Windows is the only common platform that uses UTF-16 for wstring. – Head Geek Sep 5 '11 at 20:13
1  
Probably doesn't count as 'common', but I think AIX uses 2 byte wchar_t and UTF-16. – bames53 Oct 5 '11 at 19:03
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.