带br标签的Beautifulsoup同级结构

带br标签的Beautifulsoup同级结构,第1张

带br标签的Beautifulsoup同级结构

最好的选择是

extract()
换行。它比您想象的要容易:)。

>>> from bs4 import BeautifulSoup as BS>>> html = """<div>...   some text <br>...   <span> some more text </span> <br>...   <span> and more text </span>... </div>""">>> soup = BS(html)>>> for linebreak in soup.find_all('br'):...     linebreak.extract()... <br/><br/>>>> print soup.prettify()<html> <body>  <div>   some text   <span>    some more text   </span>   <span>    and more text   </span>  </div> </body></html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5617200.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存