如何解码iPhone中的字符串
我想解码我的字符串。我使用了解析并从 RSS feed 中获取了一个字符串。在字符串中,不允许使用这些特殊字符 &、<、>在我的应用程序中。在服务器端对这些字符进行编码并将其赋予字符串。所以现在我得到了这样的字符串,
Actual String : <Tom&Jerry> (only these characters are not allowed in node data & < >).
After Encoding: %3CTom%26Jerry%3E.
但我需要显示该字符串是
<Tom&Jerry>
那么我如何解码该字符串。
请帮帮我。
谢谢。
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. In 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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
-stringByReplacingPercentEscapesUsingEncoding:
方法。Use the
-stringByReplacingPercentEscapesUsingEncoding:
method.查找
Or 通过示例:
Look for
Or by example:
我得到了答案,我的代码是,
谢谢。
I got the answer and my code is,
Thanks.