Delete empty lines
-
plz i need a help for deleted empty lines in notePad,
how can I do it ? -
You can do this with regex pretty simply:
Open find/replace dialog and type as follows:
Search:^$\r\n
Replace: empty (i.e. leave blank!)
Check regex at bottom of dialog. Replace all should remove all empty lines from the file.Another method could be as follows:
Search:(\r\n){1,}
Replace:\r\n
Regards,
David -
@DaveyD thank you, it is done successfully ;)
-
meu Edit -> Line Operations -> Delete Empty Lines
-
@Andrzej-Kmicic said:
Edit -> Line Operations -> Delete Empty Lines
That’s how I do it too, it’s the quickest way.