Guest User

Untitled

a guest
May 27th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. ^\s*$\n
  2.  
  3. Explanation of the above pattern:
  4.  
  5. -----------------------------------------------
  6. | ^ | beginning of string anchor |
  7. -----------------------------------------------
  8. | \s | any whitespace character |
  9. -----------------------------------------------
  10. | '*'| zero or more repetitions |
  11. -----------------------------------------------
  12. | $ | end of string anchor |
  13. -----------------------------------------------
  14. | \n | new line |
  15. -----------------------------------------------
Add Comment
Please, Sign In to add comment