Python 中的 XML 引用

发布于 2024-11-24 14:32:00 字数 343 浏览 0 评论 0原文

如何在Python中引用XML来获取带有引号控制字符的字符串?

源字符串:

<root namespace="value" id="guid">
    <child name="child1">Content</child>
</root>

结果字符串:

<root namespace=\"value\" id=\"guid\">\n    <child name=\"child1\">Content<\/child><\/root>

How to quote XML to get the string with quoted control characters in python?

Source string:

<root namespace="value" id="guid">
    <child name="child1">Content</child>
</root>

Result string:

<root namespace=\"value\" id=\"guid\">\n    <child name=\"child1\">Content<\/child><\/root>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

述情 2024-12-01 14:32:00

您可以在 python.org wiki 中找到有关如何转义/取消转义 xml 实体的信息。特别是,有一个关于使用 xml.sax.saxutils.quoteattr 引用属性的部分,这似乎就是您正在寻找的内容。

You can find information about how to escape/unscape xml entities in the python.org wiki. In particular, there's a section about quoting attributes with xml.sax.saxutils.quoteattr which seems to be what you're looking for.

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