#1 : 04/02-21 10:21 Pi Vert
Posts: 2
|
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 ! |
#2 : 04/02-21 11:55 David Lee
Posts: 1125
|
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. |
#3 : 04/02-21 14:56 Pi Vert
Posts: 2
|
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 ! |