使用 cElementTree 从 XML 查找所有节点
有没有办法使用 cElementTree 查找 xml 树中的所有节点? findall 方法仅适用于指定的标签。
Is there a way to find all nodes in a xml tree using cElementTree? The findall method works only for specified tags.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在 findall 方法上使用 XPath 路径:
You can use XPath paths on the findall method:
你看过node.getiterator()吗?
Have you looked at node.getiterator()?