Remove parenthesis and everything in between.

Advanced Renamer forum
#1 : 27/09-21 23:25
jerry
jerry
Posts: 2
How do I rename the following:

CanonShot (2015_10_31 05_10_38 UTC) (2015_11_16 00_00_47 UTC).pdf

to:

CanonShot.pdf.


27/09-21 23:25
#2 : 28/09-21 11:08
David Lee
David Lee
Posts: 1125
Remove pattern: \([^\)]*\)
Use regular expressions

Explanation of regex..

\( matches a single instance of "("
[^\)]* matches a string of any characters not including ")"
\( matches a single instance of ")"


28/09-21 11:08
#3 : 28/09-21 13:25
David Lee
David Lee
Posts: 1125
Remove pattern: \([^\)]*\)
Use regular expressions

Explanation of regex..

\( matches a single instance of "("
[^\)]* matches a string of any characters not including ")"
\( matches a single instance of ")"


28/09-21 13:25