保留beautifulSoup python中的子元素?

时间:2014-01-24 16:12:31

标签: python html beautifulsoup

我有标记为:

<p>Sample text. Click <a href="google.com">Here</a></p>

我想将<p>标记替换为<span>而不更改标记的子项或文本

1 个答案:

答案 0 :(得分:1)

您的任务可以使用replaceWith完成。您必须复制要用作替换的元素,然后将其作为参数提供给replaceWithdocumentation for replaceWith非常明确如何做到这一点。

无论如何,您可以阅读此问题How to change tag name with BeautifulSoup?