I have an NSString *str = @”T%B3%C3%83″;
where %C3 represents A with an umlut (I think), %B3 an m, %83 a superscript 3…
What is the best way to convert these percentages into the actual characters.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
use
-stringByReplacingPercentEscapesUsingEncodingmethod in NSString.P.S. However I don’t know what encoding you must use to get results you’ve mentioned in your question (are you sure they’re correct?)