带标签python
发布时间:2020-12-15 08:23:42 所属栏目:Python 来源:互联网
导读:我想要以下功能. input : this is test b bold text /b normal textexpected output: this is test normal text 即删除指定标签的内容 使用BeautifulSoup的解决方案: from BeautifulSoup import BeautifulSoupdef removeTag(soup, tagn
我想要以下功能. input : this is test <b> bold text </b> normal text expected output: this is test normal text 即删除指定标签的内容 解决方法使用BeautifulSoup的解决方案:from BeautifulSoup import BeautifulSoup def removeTag(soup,tagname): for tag in soup.findAll(tagname): contents = tag.contents parent = tag.parent tag.extract() s = BeautifulSoup("abcd <b> btag </b> hello <d>dtag</d>") removeTag(s,"b") print s removeTag(s,"d") print s 收益: >>> abcd hello <d>dtag</d> abcd hello (编辑:哈尔滨站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- python – 是subprocess.Popen不线程安全吗?
- python – 运行迁移时出错:sqlalchemy.exc.CompileError:
- python – Django管理命令和argparse
- Python不创建日志文件
- python – Networkx:将多重图形转换为加权边缘的简单图形
- 在Python中更改循环内的循环变量
- python – 随机裁剪数据增强卷积神经网络
- django – formfield_for_foreignkey和内联管理员
- 在远程服务器上使用ein(emacs ipython notebook)
- python – 通过没有循环的2D索引数组索引2D numpy数组
推荐文章
站长推荐
热点阅读