gpt4 book ai didi

python - 如何在 lxml 中解析 XML 时不加载注释

转载 作者:太空狗 更新时间:2023-10-29 18:26:38 26 4
gpt4 key购买 nike

我尝试像这样使用 lxml 在 Python 中解析 XML 文件:

objectify.parse(xmlPath, parserWithSchema)

但是 XML 文件可能在奇怪的地方包含注释:

<root>
<text>Sam<!--comment-->ple text</text>
<!--comment-->
<float>1.2<!--comment-->3456</float>
</root>

是一种在解析前不加载或删除评论的方法吗?

最佳答案

在解析器上设置 remove_comments=True ( documentation ):

from lxml import etree, objectify

parser = etree.XMLParser(remove_comments=True)
tree = objectify.parse(xmlPath, parser=parser)

或者,使用 makeparser() 方法:

parser = objectify.makeparser(remove_comments=True)
tree = objectify.parse(xmlPath, parser=parser)

希望对您有所帮助。

关于python - 如何在 lxml 中解析 XML 时不加载注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18313818/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com