使用lxml.etree进行XML解析时的差异

问题描述 投票:0回答:1

我仍在努力理解以下解析XML文件的方式的差异:

parse1 = root.find('document-family/document-member')
parse1 = root.find(".//application-reference//date").text
parse1 = root.xpath('//*[local-name()="claim-text"]/text()')

有时,一种方法有效,而另一种无效。什么时候应该使用“ xpath”,“ find”与xpath有何不同?

python-3.x xml xml-parsing
1个回答
0
投票

您应该查看此链接,以解决有关lxml的任何问题:lxml tutorial

© www.soinside.com 2019 - 2024. All rights reserved.