Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. // remove trailing whitespaces (end of line)
  2. [ \t]+$
  3.  
  4. // remove trailing whitespaces (beginning of line)
  5. ^[ \t]+
  6.  
  7. // remove empty space, whenever there are more than one
  8. [ ]{2,}
  9.  
  10. // empty lines
  11. ^(?:[\t ]*(?:\r?\n|\r))+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement