Alright, I have a whole butt-load of files that are in the same format as this:
Memphis, Tennessee , 1962.03.08 (Teenager's Turn, Here We Go #1)
I want to get rid of everything from the first ( to the end.
How can I do that in one go?
Alright, I have a whole butt-load of files that are in the same format as this:
Memphis, Tennessee , 1962.03.08 (Teenager's Turn, Here We Go #1)
I want to get rid of everything from the first ( to the end.
How can I do that in one go?
Just use an Action:
Action type: Replace with regular expression
Field: _FILENAME
Regular expression: (.+) (.*.(.+)
Replace matches with: $1.$2
Kind regards,
Florian
Thank you so much, I was dreading having to do that one by one.