python elementtree xpath - 在findall @ name = VARIABLEHERE

时间:2016-01-24 02:44:55

标签: python xpath xml-parsing elementtree findall

是否可以将变量传递给@name属性?

import xml.etree.ElementTree as ET
tree = ET.parse('C:/test.xml')
root = tree.getroot()

somelist = [x.text for x in root.findall(".//actionList[@name='VARIABLEHEREinsteadoftext']//value")]

我只需要从按名称过滤的特定操作列表中获取所有值,并忽略所有其他操作列表。它适用于

[@name="ACTIONLISTNAME"]

但我喜欢这样的事情:

X = ACTIONLISTNAME
[@name=X]

提前致谢!

2 个答案:

答案 0 :(得分:1)

使用字符串格式

value = "ACTIONLISTNAME"
root.findall(".//actionList[@name='%s']//value" % value)

答案 1 :(得分:0)

@alecxe的字符串格式答案很好用,但是如果您想使用F-strings formatting,则可以改为:

请注意在模式部分中转义的双大括号

xml_element.findall(f"{{x-schema:schema.xml}}row[@{attribute_name}='{attribute_value}']")