How can I delete blank lines with blank tabs/spaces in UltraEdit?
To delete blank lines with blank tabs/spaces, you can use a Perl-compatible regular expression replace as follows: Replace: “\n\s*\r” (without the quotes) With “” (without the quotes – i.e. nothing). This should replace all blank lines with all blank spaces/tabs, except for the last line which you would need to delete manually.