Regular Expressions Python Tutorial

import re
pat = '{name}'
text = 'Dear {name}'
re.sub(pat, 'Mr. Gumby', text)