当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。