when i try to convert form utf-8 string to NSString like so:

NSString *s = [NSString stringWithUTF8String:"\U0627\U0644\U0641\U0631\U0646"];
NSLog(@"%@", s);

i get the compile error:

incomplete universal character name

note that it sometime just works fine:

NSString *UAE = [NSString stringWithUTF8String:"\U0627\U0644\U0641\U0631\U0646"];
    NSLog(@"%@", UAE);

and the output:

الامارات

so why is that happening? please help.

link|improve this question
feedback

2 Answers

\U and \u are not the same thing. The \U escape expects 8 (hex) digits instead of 4.

This should work:

NSString *s = [NSString stringWithUTF8String:"\u0627\u0644\u0641\u0631\u0646"];
link|improve this answer
man man man, thank you very much :) – Nasser Mar 26 '10 at 18:02
feedback

incomplete universal character name means that you are missing part of one of the utf8 character that you are trying to write.

UTF8 spans from 1 byte symbols to 4 byte symbols, probably one of yours is longer that you wrote and you are missing 1 byte or such..

link|improve this answer
thanks alot Jack, however, im trying to parse the UTF-8 string from a webservice that i have no control over. Is space in the utf-8 string has any thing to do with issue. i mean how can I represent a space char in my case here? thanks again – Nasser Mar 26 '10 at 10:26
If the string is coming from a webservice, how are you getting a compile-time error? – David Gelhar Mar 26 '10 at 17:10
actually i manually copied the utf-8 string from the dict returned and test it using the method -stringWithUTF8String, this is when i get compile-time error – Nasser Mar 26 '10 at 18:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.