Skip to content

Instantly share code, notes, and snippets.

@daler445
Created October 4, 2019 11:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daler445/97acf346a0f51090cf1ebfa9bffad2be to your computer and use it in GitHub Desktop.
Save daler445/97acf346a0f51090cf1ebfa9bffad2be to your computer and use it in GitHub Desktop.
Notepad++ regex to remove everything, but leave numbers (and line breaks)
Notepad++ regex to remove everything, but leave numbers
[^\d]
Notepad++ regex to remove everything, but leave numbers and line breaks
[^\d\r\n]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment