How can I replace empty lines in Notepad++? I tried a find and replace with the empty lines in the find, and nothing in the replace, but it did not work; it probably needs regex.
I have a long document of commands. Using Notepad++ or regex, I want to delete all lines containing "help" including keyboard_help, etc.
How can this be done?
I'm trying to find all values with following pattern :
value="4"
value="403"
value="200"
value="201"
value="116"
value="15"
and replace it with value inside scopes.
I'm using the following regex to find the pattern :
.*"\d+"
How can I do a replacement?