how to replace a phrase with regex in python code example
Example: python replace regex
import re
s = "Example String"
replaced = re.sub('[ES]', 'a', s)
print replaced
# will print 'axample atring'
import re
s = "Example String"
replaced = re.sub('[ES]', 'a', s)
print replaced
# will print 'axample atring'