gpt4 book ai didi

python - 如何在 Beautiful Soup 中只获取 id 以特定值结尾的 div?

转载 作者:太空宇宙 更新时间:2023-11-03 13:11:39 29 4
gpt4 key购买 nike

我有一个网页源,其中有很多 div 及其各自的 id 。

例如:

<div id="abc_answer">Some content</div>
<div id="abcd_answer">Some content</div>
<div id="ggg">Some Content</div>

我只想提取所有给定 div 的 ID 中具有“_answer”子字符串的信息。我想用 beautifulsoup 做这个

最佳答案

解决方法如下:

bsObj = BeautifulSoup(some.text, "html.parser");
found = bsObj.findAll("div", id=lambda x: x and x.endswith('_answer'))

关于python - 如何在 Beautiful Soup 中只获取 id 以特定值结尾的 div?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42180455/

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