BeautifulSoup怎么查找具有特定文本內(nèi)容的標(biāo)簽

小億
233
2024-05-14 11:05:14

要查找具有特定文本內(nèi)容的標(biāo)簽,可以使用BeautifulSoup的find_all方法結(jié)合text參數(shù)來(lái)實(shí)現(xiàn)。

例如,如果要查找所有包含特定文本"example"的標(biāo)簽,可以使用以下代碼:

from bs4 import BeautifulSoup

html = """
<html>
<body>
<p>這是一個(gè)示例。</p>
<p>這是另一個(gè)示例。</p>
<p>這是包含特定文本example的示例。</p>
</body>
</html>
"""

soup = BeautifulSoup(html, 'html.parser')

specific_tags = soup.find_all(text="這是包含特定文本example的示例。")

for tag in specific_tags:
    print(tag.parent)

在這個(gè)例子中,我們使用find_all方法來(lái)查找包含特定文本"這是包含特定文本example的示例。"的標(biāo)簽,并打印出這些標(biāo)簽的父標(biāo)簽。

1