Hi !
I’m trying to replace a bunch of lines like:
blablabla REPLACE ME blablabla;FIND ME
On each line, REPLACE ME and FIND ME will have, most of the time, the same content. I just want to replace REPLACE ME with something else. The following regex does not work (it don’t find anything) :
(.+)(?P=foo)(.+);(?P<foo>(.+))
I used the syntax showed there: https://github.com/dmikalova/sublime-cheat-sheets/blob/master/cheat-sheets/Regular%20Expressions.cheatsheet.
Thanks for your help !