Replace items within brackets( )

Advanced Renamer forum
#1 : 03/07-19 13:24
Flupsie
Flupsie
Posts: 3
I am using advanced rename and need to replace items within brackets ( ) eg (13) , (31) , (65) with Oct 2018


Please advise how to do this


03/07-19 13:24
#2 : 04/07-19 12:23
David Lee
David Lee
Posts: 1125
Replace method using regular expressions:
Replace: (\(\d*\))
with: (Oct 2018)

If you wish to replace Any string in parentheses (ie not just numerical digits) then use the regular expression: (\(.*\))


04/07-19 12:23
#3 : 04/07-19 19:26
Flupsie
Flupsie
Posts: 3
Reply to #2:


Thanks for the help, David


04/07-19 19:26