I have a file with the ALBUM name: (1995) Astro Creep 2000
And would like to change the ALBUM name to: Astro Creep 2000 (1995)
I've tried: Replace action
Field: ALBUM
Regular expression: (%1) %2 %3 %4
Replace matches with: %2 %3 %4 (%1)
But this did not work.
Is there an action to do this?
Thanks!
dano
2
Yes but it's not so simple:
Action type: Replace with regular expressions
Field: ALBUM
Regular expression: ^((\d{4})) (.+)$
Replace matches with: $2 $1
Thanks you so much for your help Dano!!
I have an album name: Astro Creep 2000 (1995) and would like to extract "1995" and place it into the YEAR. I can't seem to figure this out.
dano
5
Action type: Guess values
Source format: %album%
Guessing pattern: %dummy% (%year%)
This does not work.
I tried: %year% %dummy% which adds the YEAR but the brackets are still there (1995).
How can I remove the brackets so the YEAR looks like this "1995"?
dano
7
Then you told me the wrong album name.
It works with
Astro Creep 2000 (1995)
If you have
(1995) Astro Creep 2000
you need (%year%) %dummy%