How can I replace 'foobar' to 'foo123bar'?
This doesn't work:
>>> re.sub(r'(foo)', r'\1123', 'foobar')
'J3bar'
This works:
>>> re.sub(r'(foo)', r'\1hi', 'foobar')
'foohibar'
I think it's a common issue: number after \number. Anyone can give me a point on how to handle this?