gpt4 book ai didi

python - 在 HTML 中同时查找多个 "Text"选项

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

我正在尝试使用简单的语法来查找标签内文本的多个可能选项。

假设我有以下代码:

multi= soup.find("h3", text="Experience").replace_with(code)

我想查找 text = "Experience""Summary"

我尝试过:

multi= soup.find("h3", {text:["Experience",'Summary']}).replace_with(code)

但没有成功。

最佳答案

您可以使用正则表达式

import re
soup.find(text=re.compile('Experience|Summary')).replace_with(code)

关于python - 在 HTML 中同时查找多个 "Text"选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31205637/

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