-
-
Save buglessdr/fc0f8fd53b00738c67e0418a04811a5f to your computer and use it in GitHub Desktop.
Revisions
-
fomightez revised this gist
Oct 17, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,6 @@ REGEX remove blank lines: FROM: http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/remove_blank_lines.html FIND: -
fomightez created this gist
Oct 17, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ REGEX remove blank lines: FROM: [http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/remove_blank_lines.html](http://www.ultraedit.com/support/tutorials_power_tips/ultraedit/remove_blank_lines.html) FIND: ``` ^(?:[\t ]*(?:\r?\n|\r))+ ``` REPLACE: ``` [LEAVE THIS EMPTY BECAUSE YOU DO NOT WANT TO REPLACE WITH ANYTHING] ````