How to convert 'const wchar*' to 'const char*' on Mac OS X?

2.9k Views Asked by At

Is there a elegant way to convert 'const wchar *' to 'const char *' on Mac OS X?

Kat

2

There are 2 best solutions below

1
On

Use wcstombs:

size_t wcstombs(char *dest, const wchar_t *src, size_t n);

Make sure you have your locale set appropriately.

0
On

It's hard to imagine why one would be using wchar_t on OS X, but here's how it can be done in standard C++:

#include <codecvt>

int main() {
    std::wstring_convert<std::codecvt_utf8<wchar_t>,wchar_t> convert;

    wchar_t const *ws = L"Steve Nash";
    std::string s = convert.to_bytes(ws);
    char const *cs = s.c_str();
}