how remove only number in notpad++
-
hi guys i will in notpad++ this list for example just numbers remove in list
example list
123456
123
asd123
12345asd
admin123result
asd123
12345asd
admin123for result just remove all number not remove word+number or number+word only remove number full
-
Try a regular-expression replacement, searching for
^\d+\Rand replacing with nothing. -
Hello, @the-best-of-voice and *All,
-
Open the Replace dialog (
Ctrl + H) -
SEARCH
^\h*\d+\h*\R -
REPLACE
Leave EMPTY -
Tick the
Wrap aroundoption, if all the file must be processed and untick this option if the replacement must occur from current location till the very end of file, only -
Select the
Regular expressionsearch mode -
Click on the
Replace Allbutton
Notes :
-
From beginning of line (
^), it matches possible horizontal blank characters, as Space, Tabulation (\h*) -
Followed with a non-null range of digits (
\d+) -
Followed with possible horizontal blank characters, again (
\h*) -
And ended with its EOL chars (
\r\nfor Windows files,\nin Unix files or\rin Mac files ) -
As replacement zone is
EMPTY, the entire line, containing digits, only, with possible blank chars, is then deleted
Best Regards,
guy038
-
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login