BeautifulSoup Soup findall仅提取类数据

时间:2018-10-20 06:45:15

标签: python html beautifulsoup python-beautifultable

我只想提取<>标签之间的类行中的数据,html行是:

[<h4 class="jobsearch-CompanyReview--heading">ABC</h4>]

我正在使用此代码,但是它返回了竞争行,我只想要字符串的ABC部分。

company = soup.find_all("h4", class_ ="jobsearch-CompanyReview--heading")

如何仅从html字符串中删除数据?

1 个答案:

答案 0 :(得分:0)

company = soup.find_all("h4", class_ ="jobsearch-CompanyReview--heading")[0].text