am working on some mobile apps that send requests from mobile to internet via Http Requests

the problem is that i send Arabic chars in this requests as parameters so i have to convert them from

UTF-8 to Percent Encoding

i have a java based solution here :

http://mrxprt.com/blog/?p=454

[at the bottom of post u will find English Details : ]

but my problem now with Objective-C , how can it be done ?!

link|improve this question

36% accept rate
feedback

1 Answer

Try either

NSString *result =[sourceString stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

or

NSString *result =(NSString *)CFURLCreateStringByAddingPercentEscapes(NULL,
                                                               (CFStringRef)sourceString,
                                                               NULL,
                                                               (CFStringRef)@"!*'\"();:@&=+$,/?%#[]% ",
                                                               CFStringConvertNSStringEncodingToEncoding(encoding));
link|improve this answer
it may work for english but not for arabic characters – Yahia Aug 24 '11 at 14:11
feedback

Your Answer

 
or
required, but never shown

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