Wizerd wrote:Not sure what could be wrong..
Well
you gave us totally wrong example names in your first post
Wizerd wrote:I have files/folders with the following names:
CB5001
CB50011
CB50012
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
quote="Wizerd"
Original:
CB5002
1-06 - Twain, Shania - I'm Gonna Getcha Good.zip
Should be:
CB5002
A-06 - Twain, Shania - I'm Gonna Getcha Good.zip
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Do three times a regex search and replace:
RegEx(1)
Find: ^(CB5...)1(.+)$
Repl: \1A\2
RegEx(1)
Find: ^(CB5...)2(.+)$
Repl: \1B\2
RegEx(1)
Find: ^(CB5...)3(.+)$
Repl: \1C\2