如何使用LXML递归地查找xml标签? [英] how to find recursively for a tag of xml using LXML?

查看:196
本文介绍了如何使用LXML递归地查找xml标签?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述














使用lxml有可能递归地查找标签f1,我试过findall方法,但它只适用于直接的孩子。



我想我应该为BeautifulSoup做这个工作!!! 可以使用XPath来递归搜索: p>

 >>> from lxml import etree 
>>> q = etree.fromstring('< xml>< hello> a< / hello>< x>< hello> b< / xml>< / x>< / xml> ;>> q.findall('hello')#标签名称,仅限第一级。
[< 414a7c8处的Element hello>]
>>> q.findall('.// hello')#XPath,递归。
[< Element hello at 414a7c8>,< Element hello at 414a818>]


using lxml is it possible to find recursively for tag " f1 ", i tried findall method but it works only for immediate children.

I think I should go for BeautifulSoup for this !!!

解决方案

You can use XPath to search recursively:

>>> from lxml import etree
>>> q = etree.fromstring('<xml><hello>a</hello><x><hello>b</hello></x></xml>')
>>> q.findall('hello')     # Tag name, first level only.
[<Element hello at 414a7c8>]
>>> q.findall('.//hello')  # XPath, recursive.
[<Element hello at 414a7c8>, <Element hello at 414a818>]

这篇关于如何使用LXML递归地查找xml标签?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆