次の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のみ)。
前もって感謝します!