Answers for "python regex re.sub find replace"

2

str replace python regex

import re
line = re.sub(r"</?\[\d+>", "", 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)
Posted by: Guest on January-17-2021
0

find and replace subword in word python regex

result = re.sub(r"Pulp Fiction", "Forrest Gump", text)
Posted by: Guest on July-20-2020

Python Answers by Framework

Browse Popular Code Answers by Language