gpt4 book ai didi

html - 使用 HTML 标签反序列化 XML

转载 作者:行者123 更新时间:2023-11-28 03:41:58 26 4
gpt4 key购买 nike

我想找到一种解决方案来反序列化 XML 元素中 HTML 的值。下面给出了我的示例 XML,

<root>
<Element>
<P>This <i>is </i> a sample <B>XML Tag</B><P>
</Element>
<root>

我想要这个“

This is a sample XML Tag

”作为字符串。请给我建议解决方案。我无法在 XML 文件中添加 cdata。

最佳答案

您需要使用转义字符:

"   &quot;
' &apos;
< &lt;
> &gt;
& &amp;

完整引用:

http://en.wikipedia.org/wiki/List_of_XML_and_HTML_character_entity_references

关于html - 使用 HTML 标签反序列化 XML,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10199561/

26 4 0