Tag Archives: empty line

Remove empty lines in Netbeans 7.x , NotePad++ &.. with Regular Expression

Regular Expression regex regx

You can do this with a regular expression + and a replacement. Do this in an editor window or in the project (or files) directory tree: Ctrl + H Check “Regular Expression” Search for \n\n Replace with \n Click “Replace all” until all lines are deleted If you want to keep a blank line you should: Search for \n\n\n Replace with \n\n If you want to replace consecutive lines …

Read More »