Created
October 4, 2019 11:36
-
-
Save daler445/97acf346a0f51090cf1ebfa9bffad2be to your computer and use it in GitHub Desktop.
Notepad++ regex to remove everything, but leave numbers (and line breaks)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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