I'm trying to program a multiple rename to clean MP3 names but it doesn't work:
Rename PATTERN="^[0-9]*[- _]*(.*)" TO="\1" REGEXP
Rename FINDREP PATTERN="_" TO=" "
Rename FINDREP PATTERN="-" TO=" - "
Rename FINDREP PATTERN=" - " TO=" - "
Rename CASE=allwords
If I execute this code with some file "1 dummy - file.mp3" an error dialog appears: An error ocurred renaming "test - dummy.mp3". System could not find file.
If I press Retry button the rename dialog appears with these options:
Old Name: test - dummy.txt
New Name: test - dummy.txt
Type: Standard Rename
But the file is finally renamed to "test - dummy.mp3" (with double spaces at each side of the dash), not "test - dummy.mp3" as I would want.
Do you know what could be happening?
Thank you,
Ranma