假设我有以下 HTML:
<p>
If everybody minded their own business, the world would go around a great deal faster than it does.
</p>
<p>
Who in the world am I? Ah, that's the great puzzle.
</p>
我希望能够找到包含我正在寻找的所有关键字的所有标签。例如(示例 2 和 3 不起作用):
>>> len(soup.find_all(text="world"))
2
>>> len(soup.find_all(text="world puzzle"))
1
>>> len(soup.find_all(text="world puzzle book"))
0
我一直在尝试想出一个允许我搜索所有关键字的正则表达式,但似乎 ANDing 是不可能的(只有 ORing)。
提前致谢!