I have smalll problem i want to convert unicode into Multi byte is there any way
See Question&Answers more detail:osI have smalll problem i want to convert unicode into Multi byte is there any way
See Question&Answers more detail:osstd::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.