I was wondering is it safe to do so?
wchar_t wide = /* something */;
assert(wide >= 0 && wide < 256 &&);
char myChar = static_cast<char>(wide);
If I am pretty sure the wide char will fall within ASCII range.
|
I was wondering is it safe to do so?
If I am pretty sure the wide char will fall within ASCII range. |
|||
|
|
|
Also, depending on your character encoding, you might find a difference between the Unicode characters 0x80 through 0xff and their |
|||
|
|
|
Why not just use a library routine |
|||
|
|
|
Technically, ' Nitpick: the last Whether the assertion is appropriate depends on whether you can afford to crash when the code gets to the customer, and what you could or should do if the assertion condition is violated but the assertion is not compiled into the code. For debug work, it seems fine, but you might want an active test after it for run-time checking too. |
|||
|
|
|
In general, no. You would see such a discrepancy in the majority of Windows PCs, even. For instance, on Windows Code page 1250, Note that it does not even hold for the ASCII range, as C++ doesn't even require ASCII. On IBM systems in particular you may see that |
|||
|
|
|
You are looking for
but because it's an integral type, there's absolutely no reason to do this. If you accidentally read Herbert Schildt's C: The Complete Reference, or any C book based on it, then you're completely and grossly misinformed. Characters should be of type
and not this:
As far as integral types go,
is absurdly wrong. It will not do what you want; it will break in subtle and serious ways, behave differently on different platforms, and you will most certainly confuse the hell out of your users. If you see this, you are trying to reimplement You're really looking for Now go read this, to learn what's wrong with iconv. |
|||
|
|
|
one could also convert wchar_t --> wstring --> string --> char
|
|||
|
|