I tried to rename a whole directory tree with regex - to explain the problem i have this as example:
- Code: Select all
1234-author author - title title [1994]
and i expected this:
- Code: Select all
1234_Author_Author__Title_Title__1994
The solve of the problem with multiple seach/replaces is not the target of the tool - i hope.
I tried at first the regex placement for the first token. The regex search string for the first token (4 track numbers) was:
- Code: Select all
[0-9]{4}-
The regex-replacementstring - %1 is the eval for first and only token should contain the 1234 without brackets - it should be like:
- Code: Select all
%1_
..
- Code: Select all
%1_author author - title title [1994]
I expected at the first step (similar for each line in the main window).
- Code: Select all
1234_author author - title title [1994]
Has anyone an idea
best regard.
