python re.sub grubu: \ sayıdan sonraki sayı
Nasıl değiştirebilirsiniz foobarile foo123bar? Bu işe yaramaz: >>> re.sub(r'(foo)', r'\1123', 'foobar') 'J3bar' Bu çalışıyor: >>> re.sub(r'(foo)', r'\1hi', 'foobar') 'foohibar' Sanırım böyle bir şey olduğunda yaygın bir sorun \number. Birisi bana bununla nasıl başa çıkacağına dair bir ipucu verebilir mi?