How to decoding the string in iphone

Posted by Pugal Devan on Stack Overflow See other posts from Stack Overflow or by Pugal Devan
Published on 2010-06-12T10:44:39Z Indexed on 2010/06/12 10:53 UTC
Read the original article Hit count: 326

Filed under:
|
|

Hi,

I want to decode my string. I have used parsing and get a string from RSS feed. In a string these special characters are not allowed &,<,> in my app. So server side encoding those characters and give it to the string. So now i got the string like,

 Actual String : <Tom&Jerry>  (only these characters are not allowed in node data & < >).

 After Encoding:  %3CTom%26Jerry%3E.

But i need to display the string is

                  <Tom&Jerry>

So how can i decode the string. Please help me out.

Thanks.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about string