#1 : 28/12-19 22:11 Tim
Posts: 8
|
I have about 400 files that are all over the map with numbering, but all have a 3 digit prefix; i.e. 001 <file name> or 013 <file name> or 151 <file name>, etc..., I'd like to erase the prefix and renumber all of the files sequentially with a 3 digit number; 001, 002, 003, etc...
Any assistance would be appreciated. |
#2 : 29/12-19 18:31 David Lee
Posts: 1125
|
Replace: ^\d{3}
with: <Inc Nr:001> Use regular expressions |
#3 : 31/12-19 00:18 Tim
Posts: 8
|
Reply to #2:
Thank you! |