gpt4 book ai didi

python - 如何使用 ElementTree python 在 xml 解析器中处理 CDATA?

转载 作者:数据小太阳 更新时间:2023-10-29 02:47:00 25 4
gpt4 key购买 nike

我刚开始使用 python 并尝试使用 ElementTree 解析 xml 文件。但问题是我有一个带有 CDATA 的标签,它在 tree.write.

之后被删除了

所以基本上我有这个标签

<content><![CDATA[eclipse.ver=1&encoding/ <project>=UTF-8${line.sep}]]></content>

改变为

<content>eclipse.ver=1&encoding/&lt;project&gt;=UTF-8${line.sep}</content>

我尝试用谷歌搜索它,但不是很有帮助。那么任何人都可以帮助我,我怎样才能在标签中获得完全相同的内容??

最佳答案

from xml.etree.ElementTree import ElementTree
import re
l=[]
tree = ElementTree()
tree.parse("YOURFILE.xml")
root = tree.getroot()

for parent in root.findall('.//content/..'):
for child in parent.findall("content"):
if(child.text != None):
l.append(child.text)

关于python - 如何使用 ElementTree python 在 xml 解析器中处理 CDATA?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39908943/

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