1
content='<p>Hello, the web site is <a href="https://www.google.com">Google</a></p>. <p>The search engine is <a href="https://www.baidu.com">Baidu</a></p>.'
soup = BeautifulSoup(content, 'html.parser')
現在我想在HREF的URL地址來替換整個<a> </a>
。所以我想得到預期的結果:更換<a></a>與HREF在BeautifulSoup
Hello, the web site is https://www.google.com. The search engine is https://www.baidu.com.
任何人都可以提供解決方案嗎?
和問題是什麼?首先使用BS找到''並獲得'href'。 – furas