1
aaaaa1bbbbb
ccccc2ddddd
eeeee3fffff

I want to remove all characters before numbers, after replacing file, it should look like

bbbbb
ddddd
fffff
Jonathon Reinhart
  • 132,704
  • 33
  • 254
  • 328
user3276905
  • 45
  • 1
  • 4

1 Answers1

1

In Find and Replace dialog box enter these values:

  1. Find what : ^[a-z]+[0-9]
  2. Replace with : Do not enter anything
  3. Make sure to select Regular Expression checkbox.
  4. Hit Replace All
Pramod Karandikar
  • 5,289
  • 7
  • 43
  • 68