首页 > 后端开发 > Python教程 > 如何使用 Python 正则表达式从字符串中删除 HTML 标签?

如何使用 Python 正则表达式从字符串中删除 HTML 标签?

Patricia Arquette
发布: 2024-12-22 19:08:15
原创
913 人浏览过

How to Remove HTML Tags from a String Using Python Regular Expressions?

Python 中用正则表达式替换字符串

问题:

如何替换 HTML使用正则表达式在字符串中标记Python?

输入:

this is a paragraph with<[1]> in between</[1]> and then there are cases ... where the<[99]> number ranges from 1-100</[99]>.
and there are many other lines in the txt files
with<[3]> such tags </[3]>
登录后复制

所需输出:

this is a paragraph with in between and then there are cases ... where the number ranges from 1-100.
and there are many other lines in the txt files
with such tags
登录后复制

解决方案:

使用正则表达式替换多个标签Python,按照以下步骤操作:

import re

line = re.sub(r"<\/?\[\d+>]", "", line)
登录后复制

说明:

正则表达式 r""] 匹配以任何开头的标签 结尾。问号字符? / 后面表示斜杠是可选的。 sub 函数将每个匹配项替换为空字符串。

注释版本:

line = re.sub(r"""
  (?x) # Use free-spacing mode.
  <    # Match a literal '<'
  /?   # Optionally match a '/'
  \[   # Match a literal '['
  \d+  # Match one or more digits
  >    # Match a literal '>'
""", "", line)
登录后复制

附加注释:

  • 正则表达式可能很复杂,因此建议使用类似的工具www.regular-expressions.info 了解语法并测试您的表达式。
  • 避免对要替换的数字范围进行硬编码(从 1 到 99)。
  • 了解正则表达式中的特殊字符称为元字符。

以上是如何使用 Python 正则表达式从字符串中删除 HTML 标签?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板