使用 Python 2 在 XML 中按属性查找所有节点
- 作者: 爱冰冰
- 来源: 51数据库
- 2022-11-01
问题描述
我有一个 XML 文件,其中包含许多具有相同属性的不同节点.
I have an XML file which has a lot of different nodes with the same attribute.
我想知道是否可以使用 Python 和任何其他包(如 minidom 或 ElementTree)找到所有这些节点.
I was wondering if it's possible to find all these nodes using Python and any additional package like minidom or ElementTree.
推荐答案
可以使用内置的xml.etree.ElementTree 模块.
You can use built-in xml.etree.ElementTree module.
如果您希望所有元素都具有特定属性而不考虑属性值,则可以使用 xpath 表达式:
If you want all elements that have a particular attribute regardless of the attribute values, you can use an xpath expression:
//tag[@attr]
或者,如果您关心价值观:
Or, if you care about values:
//tag[@attr="value"]
示例(使用 <代码>findall() 方法):
Example (using findall() method):
import xml.etree.ElementTree as ET
data = """
<parent>
<child attr="test">1</child>
<child attr="something else">2</child>
<child other_attr="other">3</child>
<child>4</child>
<child attr="test">5</child>
</parent>
"""
parent = ET.fromstring(data)
print [child.text for child in parent.findall('.//child[@attr]')]
print [child.text for child in parent.findall('.//child[@attr="test"]')]
打印:
['1', '2', '5'] ['1', '5']
推荐阅读
热点文章
Discord.py(重写)on_member_update 无法正常工作
0
Discord.py 在 vc 中获取用户分钟数
0
discord.py 重写 |为我的命令出错
0
Discord.py rewrite 如何 DM 命令?
0
播放音频时,最后一部分被切断.如何解决这个问题?(discord.py)
0
在消息删除消息 Discord.py
0
如何使 discord.py 机器人私人/直接消息不是作者的人?
0
(Discord.py) 如何获取整个嵌入内容?
0
Discord bot 尽管获得了许可,但不能提及所有人
0
Discord.py discord.NotFound 异常
0
