How can I replace foobar with 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 when...
  • May 22, 2022
  • 0 Comments