#1 : 09/06-21 18:20 Shaun
Posts: 7
|
how would i go about removing a pattern that starts like this E01 or e1234 ?
the number vary in length ? Shaun |
#2 : 10/06-21 11:21 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 |
#3 : 10/06-21 16:21 Shaun
Posts: 7
|
Reply to #2:
thank you, i don't know the wording to ask the right questions |