gpt4 book ai didi

python - BeautifulSoup : get contents of search result tag

转载 作者:太空宇宙 更新时间:2023-11-04 03:04:18 24 4
gpt4 key购买 nike

尝试使用 BeautifulSoup (它是一个“标签”对象)获取此类 html 片段的内容。

<span class="font5"> arrives at this calculation from the Torah’s report that the deluge (rains) began on the 17<sup>th</sup> day of the second month </span>

我试过:

soup.contents.find_all('span')
soup.find_all('span')
soup.find_all(re.compile("font[0-9]+"))
soup.string
soup.child

而且这些似乎都不起作用。我能做什么?

最佳答案

soup.find_all('span')确实有效;返回所有 span标签。

如果你想得到spanfont<N> 标记类,将模式指定为关键字参数 class_ :

soup.find_all('span', class_=re.compile('font[0-9]+'))

关于python - BeautifulSoup : get contents of search result tag,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39968593/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com