Ambiera ForumDiscussions, Help and Support. |
|
|
|||||
|
Here is my xml: <?xml version="1.0" encoding="UTF-8" ?> <Message> Some unicode chars: É,&273;,&7897;,&432;,... </Message> stringw s1 = L"Some unicode chars: É,&273;,&7897;,&432;,..."; //OK stringw s2 = xml->getNodeData(); //weird chars So how to load unicode xml? Thanks. --------------------------------- Sorry for my English. |
||||
|
There is currently no support for this, sorry. |
||||
|
Hi, i needed chars like 'é' 'à' to work with, this is how i obtained it : myStringw.replace('é', 233) ; (233 is unicode value for 'é') myStringw.replace('è', 232) ; etc... Hope i helped you ;-) and sorry for bad english ^^ |
||||
|
And of course in the xml file put 'é' 'à' etc... bye ;) |
|