i am developing an iOS application, i have a UIWebView witch calls JavaScript function witch return to me a text encoded, to decode this text i am using the NSString method stringByReplacingPercentEscapesUsingEncoding but the problem with this method is i can not decode spécial caractérs like this : %u2019. How i can decode those caracteres ? (%uxxxx) thanks for your answers
|
|
|||
|
|
|
That looks like UTF8 encoding, not percent encoding. It's one of the Unicode encodings. I might be wrong about which one. but I think it's UTF8. You should decode that using a method like stringWithUTF8String (if the data is already an NSString) or initWithData:encoding: (if the data from the JavaScript is NSData) |
||||
|
|
First thanks for every busy who answered to my question, but i have chosen this solution : a non-standard encoding for Unicode characters: I have changed the |
|||
|
|