Is there any conceivable reason why I would see different results using unicode string literals versus the actual hex value for the UChar.
UnicodeString s1(0x0040); // @ sign
UnicodeString s2("\u0040");
s1 isn't equivalent to s2. Why?
|
Is there any conceivable reason why I would see different results using unicode string literals versus the actual hex value for the UChar.
s1 isn't equivalent to s2. Why?
| |||
|
show 12 more comments
feedback
|
|
couldn't reproduce on ICU 4.8.1.1
=>
gcc 4.4.5 RHEL 6.1 x86_64 | |||
|
feedback
|
|
For anyone else who find's this, here's what I found (in ICU's documentation).
| |||
feedback
|
|
The double quotes in your
| |||||||||||||
feedback
|
UnicodeString-- is it defined by ICU? – Kerrek SB Nov 16 '11 at 0:06"\u0040"is just not well-defined (that is, it's implementation-defined). So I guess we can't answer that in general. If it were a UTF-8 string (u8"\u0040") we might be in better shape. – Kerrek SB Nov 16 '11 at 1:08