programming-examples/python/Regular_Expression/Remove the ANSI escape sequences from a string.py

6 lines
231 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import re
text = "\t\u001b[0;35mgoogle.com\u001b[0m \u001b[0;36m216.58.218.206\u001b[0m"
print("Original Text: ",text)
reaesc = re.compile(r'\x1b[^m]*m')
new_text = reaesc.sub('', text)
print("New Text: ",new_text)