NSString 编码特殊字符,如 !@#$%^&
我如何对我的 NSString 进行编码,以便所有特殊字符例如 &变成 & 且 ' 变成 &apos?
我不确定编码是否是正确的词,所以如果我错了,请纠正我。
谢谢
How can i encode my NSString so all the special character for example & becomes & and ' becomes &apos?
I am not sure if encoding is the right word for it so please correct me if I am wrong.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您所说的称为 HTML 实体。
有一个类别声称可以解决此问题: NSString+HTML。
对于URL转义(当我们这样做时)使用这个:
编辑:正如戴夫指出的我的参考解决方案中的弱点,这里有一些与许多其他解决方案相关的问题:
What you are talking about is called HTML Entities.
There exists a category claiming to solve this: NSString+HTML.
For URL Escaping (while we're at it) use this:
Edit: As Dave pointed out weaknesses in my references solution, here are some related questions with lots of other solutions: