You are not logged in.
Pages: 1
I have music folder with this format : Title - yyyy e.g Concert By The Sea - 1955
I wish to rename to look like this: yyyy - Title e.g. 1955 - Concert By The Sea
Any help would be appreciated.
I have only used the renamer rules to rename files/folders.
Offline
It seems like a regular expression would handle this quite nicely.
Expression: (.*?) - (\d{4})
Replace: $2 - $1
Offline
Just a note for mcmdean, if you want to rename folders instead of files you will need to go to Filter Settings and check appropriate options.
Offline
Worked like a charm - Thanks Guys
Offline
If there is a period in the folder name it doesn't work.
Last edited by mcmdean (2009-05-10 02:27)
Offline
Well, periods also mark the file extension, so it's not much surprise that periods give problems.
It might be worth adding in filters that replace all periods with some other character (dollar or percent signs might work), do the regular expression, then replace the dollar/percent signs with periods again. It should dance around the issue well enough, I think.
Offline
All you need to do is simply unmark "Skip extension" option in the RegEx rule, this will fix your "dot" problem. Dot is treated as an extension in files and folders.
Offline
Pages: 1