解码 xml 中的 cdata 内容
客户向我们发送了一个 XML 文件,其中包含 XML 编码的 CDATA 内容 即 <![CDATA[some content]]>
在 asp.net 中用解码版本替换 XML 文件中的内容的最佳方法是什么? (无需要求客户向我们发送正确的文件)
谢谢
A customer has sent us an XML file with CDATA content that is XML encoded
i.e. <![CDATA[some content]]>
What is the best way in asp.net to replace the content in the XML file with a decoded version? (without asking the customer to send us a correct file)
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可能不是您正在寻找的,但它至少会给您一个开始:
这假设您的 cdata 块是当前节点的唯一子节点(根据我的测试)。
This might not be what you are looking for, but it will at least give you a start:
This assumes that your cdata block is the only child of the current node (as per my test).