如何在 python 中使用 beautifulsoup4 来抓取标签中的内容

如题所述

源代码
from bs4 import BeautifulSoup
html_doc = '''
<div class="line-title">
<span class="title">
<b>
111
<span class="t-small c-green">
(222)
</span>
</b>
</span>
<span class="sechovershow jzbtn c-lined small marl10 act-ugc-edit act-ugc-edit-base1" style="margin-top:-5px">
<i class="fa fa-pencil"></i>
编辑
</span>
</div>
'''
soup = BeautifulSoup(html_doc, "html.parser")
# 初级版
didi = soup.b.next_element.strip()
invest = soup.b.span.next_element.strip()
# 进阶版
didi, invest = soup.b.stripped_strings
温馨提示:内容为网友见解,仅供参考
第1个回答  2017-03-25
因为你的html不是合法的xml格式,标签没有成对出现,只能用html解析器 from bs4 import BeautifulSoups
相似回答