Advertisement
Guest User

Untitled

a guest
Jul 30th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. // Condense triple line breaks
  2. //
  3. // Find
  4. /\n\n\n+/
  5. // Replace
  6. /n/n
  7.  
  8. // Remove EOL whitespace
  9. //
  10. // Find
  11. /[ \t]+\n/
  12. // Replace
  13. /n
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement