hello. Suppose I want to number some files. For exemple every file has an “xyz” word.
I want to add a number instead of “xyz”, increment by +1. Some kind of search and replace “xyz” with incremental 1,2,3…etc
“xyz” will become 1 (in first files)
“xyz” will become 2 (in second files)
“xyz” will become 3 (in the third files)
…
so on
I have a very good php file that can do this, but I don’t know if is in possible in sublime with regex.