removing a random pattern

Advanced Renamer forum
#1 : 09/06-21 18:20
Shaun
Shaun
Posts: 7
how would i go about removing a pattern that starts like this E01 or e1234 ?
the number vary in length ?

Shaun


09/06-21 18:20
#2 : 10/06-21 11:21
David Lee
David Lee
Posts: 1125
The following Replace method will remove a single "E" followed by a string of one or more digits, wherever it occurs in the filename...

Replace: E\d+
with: nothing
NOT Case sensitive
Use regular expressions



10/06-21 11:21 - edited 10/06-21 19:26
#3 : 10/06-21 16:21
Shaun
Shaun
Posts: 7
Reply to #2:

thank you, i don't know the wording to ask the right questions


10/06-21 16:21