I want to decode my string. I used parsing and got the string from the RSS feed. On the line, these special characters are not allowed &, <,> in my application. On the server side, these characters are encoded and sent to the string. So now I got a 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 line
<Tom&Jerry>
So how can I decode a string.
Please help me.
Thank.
Pugal source
share