转义字符 &停止解析
我正在尝试使用 nsxmlparser 解析一些数据,只要接收到的文本中存在 &(&符号),它就会停止读取解析的数据。我怎样才能阅读&通常,与其他普通字符类似。
谢谢 潘卡伊
I am trying to parse some data using nsxmlparser, whenever there is a &(ampersand) present in the text being received it just stops reading the parsed data. How can I read & normally, similar to other normal characters.
Thanks
Pankaj
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
XML 文档中的单独“&”符号无效,除非在 CDATA 部分 中。您可以通过以下任一方式让您的 XML 提供程序提供有效的 XML:
&
字符实体。A lone ampersand in an XML document is not valid except in a CDATA section. You can either have your XML provider provide valid XML by either:
&
character entity where you want ampersands.找不到解决方案,所以我不得不更换 &在后端添加一些字符,然后在使用时再次在 iPhone 中替换它
Could not find the solution so i had to replace the & with some characters in backend and then again replace it in iphone while using it