programming-examples/python/Regular_Expression/Do a case-insensitive string replacement.py
2019-11-15 12:59:38 +01:00

7 lines
247 B
Python

import re
text = "PHP Exercises"
print("Original Text: ",text)
redata = re.compile(re.escape('php'), re.IGNORECASE)
new_text = redata.sub('Python', 'PHP Exercises')
print("Using 'php' replace PHP")
print("New Text: ",new_text)