Xpath 是一个用于 XML 文档定位和检索信息的 W3C 标准化语言。要使用 XPath 检索 XML 文件中的命名空间,您需要遵循以下步骤:
- 加载 XML 文件并将其转换为对象。您可以在解析 XML 文件时完成此操作:import xml.etree.ElementTree as ET
xml_data = """<?xml version="1.0"?>
<catalog>
<book id="bk101">
<author>Gambardella, Matthew</author>
<title>XML Developer's Guide</title>
<genre>Computer</genre>
<price>44.95</price>
<publish_date>2000-10-01</publish_date>
<description>An in-depth look at creating applications with XML.</description>
</book>
<book id="bk102">
<author>Ralls, Kim</author>
<title>Midnight Rain</title>
<genre>Fantasy</genre>
<price>5.95</price>
<publish_date>2000-12-16</publish_date>
<description>A former architect battles corporate zombies and an evil sorceress.</description>
</book>
</catalog>
"""
xml_tree = ET.fromstring(xml_data)/bookbook2_element = xml_tree.find("book", ).text
print(book2_element) # Output: Midnight Rain (page 1 of 1)
- 使用 XPath 表达式来检索命名空间信息。例如,要检索根标记下的
<book>
元素,您可以使用以下 XPath 表达式: - 使用
find()
方法查找相应节点并访问信息,例如查找第 2 个 <book>
元素: - 如果您需要从 XML 文件中检索其他元素,请重复上述步骤,更改 XPath 表达式以匹配新的搜索条件。