3
我似乎無法能夠提取的HREF(只有一個<strong>Website:</strong>
在頁面上)從HTML以下湯:美麗的湯 - 如何讓HREF
<div id='id_Website'>
<strong>Website:</strong>
<a href='http://google.com' target='_blank' rel='nofollow'>www.google.com</a>
</div></div><div>
這是我思想應該工作
href = soup.find("strong" ,text=re.compile(r'Website')).next["href"]
這就是我想要的。謝謝。如何通過ID進行搜索以獲取下一個href值? – howtodothis
你可以使用像'soup.findAll('div',id = re.compile('Website $'))''來獲得所有'div's考慮 - 沒有看到其他例子,它不清楚你會怎麼做但是,挑選出來。 –