How can I call a backreference and immediately follow it by numbers
I'm using the Sublime find&replace RegEx engine (Python) but the problem is the same in PHP:
Example of the problem (obv. neither of these work)
Sublime: Find What: ([a-zA-Z]*)2013 Replace With: $12014
PHP: preg_replace('~([a-zA-Z]*)2013~', '$12014', $file_contents);