转义字符 &停止解析

发布于 2024-10-18 09:15:19 字数 110 浏览 2 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

挽你眉间 2024-10-25 09:15:19

XML 文档中的单独“&”符号无效,除非在 CDATA 部分 中。您可以通过以下任一方式让您的 XML 提供程序提供有效的 XML:

  1. 在需要与符号的位置使用 & 字符实体。
  2. 将包含 & 符号的文本放入 CDATA 部分。

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:

  1. Using the & character entity where you want ampersands.
  2. Putting text containing ampersands into a CDATA section.
墨离汐 2024-10-25 09:15:19

找不到解决方案,所以我不得不更换 &在后端添加一些字符,然后在使用时再次在 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文