A regular expression that matches all blank lines in a document. This can be useful in deleting blank/empty lines generated in Sublime 2/3.
/^(\r|\n\r?)/
Matches:
- All blank lines
See Also:
- Regular Expressions For New Line
- Regex To Match Non-blank And Non-Empty String
- Regex To Match Spaces And Empty Lines That Aren’t In Quotes