Search code examples
regexnotepad++

notepad++ regex remove numbers


I have a notepad++ text file with:

have 9456
do 9823781
no 83270
tell 342

and it continues like that.

What is the regex for removing the space and numbers from the file?


Solution

  • You want to replace [0-9 ]+ with empty string with the regex option enabled.