Removing (numbers)

Advanced Renamer forum
#1 : 16/02-17 01:31
Bruce
Bruce
Posts: 1
Hi, How do I remove numbers within (12345), the numbers are not the same, but all are inside the ( ). They start from 1 and go to 143567. I want to remove everything including the space in from of the (12345)


16/02-17 01:31 - edited 16/02-17 01:32
#2 : 16/02-17 02:10
G. Lambany
G. Lambany
Posts: 187
Reply to #1:
Quite easy

Method: Replace
Text to be replaced: \(\s?\d{1,6}\s?\)
Replace with: ()
Use regular expressions: checked

cheers


16/02-17 02:10 - edited 16/02-17 02:11
#3 : 16/02-17 02:13
G. Lambany
G. Lambany
Posts: 187
Reply to #1:
or did you mean the whole thing (123456) plus any space before or after?

method: remove pattern
Pattern: \s?\(\d{1,6}\)\s?
use regular expression: checked


not sure I understand properly, but try those anyway

cheers


16/02-17 02:13