Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting Unicode to Multibyte

Tags:

c++

visual-c++

I have smalll problem i want to convert unicode into Multi byte is there any way

like image 950
subbu Avatar asked Oct 06 '09 13:10

subbu


1 Answers

std::string NarrowString(const std::wstring& str, const char* localeName = "C")
{
  std::string result;
  result.resize(str.size());

  std::locale loc(localeName);

  std::use_facet<std::ctype<wchar_t> >(loc).narrow(
    str.c_str(), str.c_str() + str.size(), '?',  &*result.begin());

  return result;
}

It should use the current locale to convert the unicode string. For the caracters that do not belong in the codepage the '?' caracter is being used. Tested with Visual C++ 2005/2008.

like image 192
Cristian Adam Avatar answered Sep 21 '22 20:09

Cristian Adam