Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこれを持っています:
dates = soup.findAll("div", {"id" : "date"})
ただし、 idはなどにidなる可能性があるため、ワイルドカード検索にする必要があります。date_1date_2
id
date_1
date_2
callable をフィルターとして提供できます。
dates = soup.findAll("div", {"id" : lambda L: L and L.startswith('date')})
または@DSMが指摘するように
dates = soup.findAll("div", {"id" : re.compile('date.*')})
BeautifulSoup は RegExp オブジェクトを認識し、その.match()メソッドを呼び出します。
.match()