0

对于所有文本节点,如何找到父元素的类和标签类型

4

1 回答 1

1

XPath 文档来看,这并不难。这是我的专用 XML 文件:

<root>
    <child1>
        <text>Text1</text>
    </child1>
    <child2>
        <text>Text2</text>
    </child2>
    <child3>
        <text>Text3</text>
    </child3>
    <child4>
        <text>Text4</text>
    </child4>
</root>

现在有了实现 XPath 支持的lxml 库(内置 Python XML 库不是这种情况),我们在这里:

>>> from lxml import etree
>>> root = etree.parse(path).getroot()
>>> for p in root.xpath('//text/..'):
    print p.tag


child1
child2
child3
child4
于 2013-02-06T18:09:05.470 回答