📜  str 替换 python 正则表达式 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:39.525000             🧑  作者: Mango

代码示例1
import re
line = re.sub(r"", "", line)

# Comented version
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)