- 已关闭**。此问题需要details or clarity。当前不接受答案。
- 想要改进此问题?**添加详细信息并通过editing this post阐明问题。
17小时前关门了。
Improve this question
如何使用BeautifulSoup解析这个XML?
<top>
<between />Example <between /> <between/>text from <random/>XML<random/> sentence.<between/>
<top>
我期待:示例"XML语句中的文本。"
1条答案
按热度按时间pw9qyyiw1#
您希望找到文档中所有的“top”标签,并为包含指定文本的标签建立索引,然后您只需要获取该元素中的所有文本并删除空格。
soup.find_all('top')[wherever this tag appears].get_text().strip()