Reputation: 31
I have a huge list like this. I want to remove the lines that have only numbers. How can I do that? I'm using Notepad++. So, if possible, please give me a solution that will work on Notepad++
List:
dog.belt.b79
dog.food
7902823429
dog.hoodie.722
1898261
dog.collar
dogbelt
80862
doghoodie.89
42111556
I want:
dog.belt.b79
dog.food
dog.hoodie.722
dog.collar
dogbelt
doghoodie.89
I tried to Google it. But nothing really helps.
Upvotes: 0
Views: 915
Reputation: 7260
You'd go through following steps:
^\d+\R
NOTHING
is resulting in:
Upvotes: 1