programming-examples/python/Regular_Expression/Abbreviate 'Road' as 'Rd.py
2019-11-15 12:59:38 +01:00

3 lines
85 B
Python

import re
street = '21 Ramkrishna Road'
print(re.sub('Road$', 'Rd.', street))