How remove all characters between brackets
Hi,
I want to be able to remove all characters in filenames betwwen brackets including the brackets
so HectorBerlioz (blah-blah)-01 becomes HectorBerlioz-01
I haven't been able to find how to achieve this and I have so many files with ''comments'' between brackets !
Any help form experts here ?
TIA to all !
I want to be able to remove all characters in filenames betwwen brackets including the brackets
so HectorBerlioz (blah-blah)-01 becomes HectorBerlioz-01
I haven't been able to find how to achieve this and I have so many files with ''comments'' between brackets !
Any help form experts here ?
TIA to all !
Just use a Replace method with a regular expression.
See the Uset Guide: www.advancedrenamer.com/user_guide/regular_expresions
Replace: " *\(.*\)" (Do not include the quotation marks)
with: leave blank
Use regular expressions.
This will delete any string (".*") enclosed by parentheses, together with any preceding spaces.
See the Uset Guide: www.advancedrenamer.com/user_guide/regular_expresions
Replace: " *\(.*\)" (Do not include the quotation marks)
with: leave blank
Use regular expressions.
This will delete any string (".*") enclosed by parentheses, together with any preceding spaces.
Reply to #2:
Thanks a lot. That works great !
I had already read that topic, but not understood nor be able to do what I wanted
Thanks again !
Thanks a lot. That works great !
I had already read that topic, but not understood nor be able to do what I wanted
Thanks again !