當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python BeautifulSoup Tag clear方法用法及代碼示例


在 Beautiful Soup 中,clear 方法刪除標簽的內部內容,同時保留標簽本身。

例子

考慮以下 HTML 文檔:

my_html = "<p>A cat sat on a mat.</p>"
soup = BeautifulSoup(my_html)

刪除p標簽的內部內容:

p_tag = soup.find("p")
p_tag.clear()
p_tag



<p></p>

相關用法


注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 BeautifulSoup Tag | clear method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。