vote up 11 vote down star
9

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.

flag
Incidentally, the standard C++ library is not called STL; the STL is just a small subsection of the standard C++ library. In this case, I believe you are asking for functionality in the standard C++ library, and I've answered accordingly. – Chris Jester-Young Sep 29 '08 at 12:09
Thanks, 'standard C++ library' is more precise statement. – vlado.grigorov Sep 30 '08 at 8:55
You haven't specified which encoding you want to end up with. wstring doesn't specify any particular encoding. Of course it'd be natural to convert to utf32 on platforms where wchar_t is 4 bytes wide, and utf16 if wchar_t is 2 bytes. Is that what you want? – jalf Nov 11 '08 at 15:31

7 Answers

vote up 6 vote down

You can extract utf8_codecvt_facet from Boost serialization library.

Their usage example:

  typedef wchar_t ucs4_t;

  std::locale old_locale;
  std::locale utf8_locale(old_locale,new utf8_codecvt_facet<ucs4_t>);

  // Set a New global locale
  std::locale::global(utf8_locale);

  // Send the UCS-4 data out, converting to UTF-8
  {
    std::wofstream ofs("data.ucd");
    ofs.imbue(utf8_locale);
    std::copy(ucs4_data.begin(),ucs4_data.end(),
          std::ostream_iterator<ucs4_t,ucs4_t>(ofs));
  }

  // Read the UTF-8 data back in, converting to UCS-4 on the way in
  std::vector<ucs4_t> from_file;
  {
    std::wifstream ifs("data.ucd");
    ifs.imbue(utf8_locale);
    ucs4_t item = 0;
    while (ifs >> item) from_file.push_back(item);
  }

Look for utf8_codecvt_facet.hpp and utf8_codecvt_facet.cpp files in boost sources.

link|flag
I though you had to imbue the stream before it is opened, otherwise the imbue is ignored! – Martin York Nov 11 '08 at 5:33
Martin, it seems to work with Visual Studio 2005: 0x41a is successfully converted to {0xd0, 0x9a} UTF-8 sequence. – Constantin Nov 11 '08 at 15:15
vote up 3 vote down

There are several ways to do this, but the results depend on what the character encodings are in the string and wstring variables.

If you know the string is ASCII, you can simply use wstring's iterator constructor:

string s = "This is surely ASCII.";
wstring w(s.begin(), s.end());

If your string has some other encoding, however, you'll get very bad results. If the encoding is Unicode, you could take a look at the ICU project, which provides a cross-platform set of libraries that convert to and from all sorts of Unicode encodings.

If your string contains characters in a code page, then may $DEITY have mercy on your soul.

link|flag
ICU converts too/from every character encoding I have ever come across. Its huge. – Martin York Sep 29 '08 at 16:12
vote up 3 vote down

UTF8-CPP: UTF-8 with C++ in a Portable Way

link|flag
vote up 2 vote down

You can use the codecvt locale facet. There's a specific specialisation defined, codecvt<wchar_t, char, mbstate_t> that may be of use to you, although, the behaviour of that is system-specific, and does not guarantee conversion to UTF-8 in any way.

link|flag
vote up 1 vote down

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.

string UTF16toUTF8(const wstring & in)
{
	string out;
	unsigned int codepoint;
	bool completecode = false;
	for (wstring::const_iterator p = in.begin();  p != in.end();  ++p)
	{
		if (*p >= 0xd800 && *p <= 0xdbff)
		{
			codepoint = ((*p - 0xd800) << 10) + 0x10000;
			completecode = false;
		}
		else if (!completecode && *p >= 0xdc00 && *p <= 0xdfff)
		{
			codepoint |= *p - 0xdc00;
			completecode = true;
		}
		else
		{
			codepoint = *p;
			completecode = true;
		}
		if (completecode)
		{
			if (codepoint <= 0x7f)
				out.push_back(codepoint);
			else if (codepoint <= 0x7ff)
			{
				out.push_back(0xc0 | ((codepoint >> 6) & 0x1f));
				out.push_back(0x80 | (codepoint & 0x3f));
			}
			else if (codepoint <= 0xffff)
			{
				out.push_back(0xe0 | ((codepoint >> 12) & 0x0f));
				out.push_back(0x80 | ((codepoint >> 6) & 0x3f));
				out.push_back(0x80 | (codepoint & 0x3f));
			}
			else
			{
				out.push_back(0xf0 | ((codepoint >> 18) & 0x07));
				out.push_back(0x80 | ((codepoint >> 12) & 0x3f));
				out.push_back(0x80 | ((codepoint >> 6) & 0x3f));
				out.push_back(0x80 | (codepoint & 0x3f));
			}
		}
	}
	return out;
}
link|flag
I don't see he seaid anything about std::string containing UTF-8 encoded strings in the original question: "Is it possible to convert std::string to std::wstring and vice versa in a platform independent manner?" – Nemanja Trifunovic Sep 29 '08 at 16:59
UTF-8 is specified in the title of the post. You are correct that it is missing from the body of the text. – Mark Ransom Sep 29 '08 at 18:07
Doh, you are right. UTF8-CPP then :) – Nemanja Trifunovic Sep 29 '08 at 18:13
Thank you for the correction, I did intend to use UTF8. I edited the question to be more clear. – vlado.grigorov Sep 30 '08 at 8:55
But ''widechar'' does not necessarily mean UTF16 – moogs Oct 16 '08 at 10:23
vote up 0 vote down

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.

link|flag
vote up 0 vote down

This code is tested

http://unicode.org/Public/PROGRAMS/CVTUTF/

link|flag

Your Answer

Get an OpenID
or

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