Delete words in brackets
Hello,
I'd like to delete all the words in brackets and/or parentheses as well as the brackets and/or parentheses themselves. Which regular expression should I use? Thanks in advance!
I'd like to delete all the words in brackets and/or parentheses as well as the brackets and/or parentheses themselves. Which regular expression should I use? Thanks in advance!
Reply to #1:
Hi.
You don´t need any regular expression for this. Use the Advanced Renamer REPLACE method.
REPLACE: (*)/[*]
REPLACE WITH: (blank)
That´s all.
EDIT: if you still want to use regex, use this:
REPLACE: \[.+?\]|\(.+?\)
REPLACE WITH: (blank)
Hi.
You don´t need any regular expression for this. Use the Advanced Renamer REPLACE method.
REPLACE: (*)/[*]
REPLACE WITH: (blank)
That´s all.
EDIT: if you still want to use regex, use this:
REPLACE: \[.+?\]|\(.+?\)
REPLACE WITH: (blank)