Reputation: 23
I have Document like this, and I need to remove number between / / in notepad++
/554301/5e687cfh36825344e915e
/557040/756dj4405g376c0dd3c2f
/567600/287650cf27sdc77d5c73a
/566270/1fefd5w12345l89aa776d
/581080/09742m02568n481669da4
/629500/e4fa1234567aejhtre81a
To this:
5e687cfh36825344e915e
756dj4405g376c0dd3c2f
287650cf27sdc77d5c73a
1fefd5w12345l89aa776d
09742m02568n481669da4
e4fa1234567aejhtre81a
Upvotes: 2
Views: 322
Reputation: 18743
Notepad++ supports Regular Expressions so you can use that.
Follow these steps,
CTRL+F
in your Notepad++ window.Replace
tab.Regular Expression
.Find What
field, type /\d+/
and leave the Replace With
field empty.Replace All
.Upvotes: 1
Reputation: 5209
If notepad++ supports find&replace with regex, you can find /\d+/
and replace it with (nothing).
Upvotes: 1