Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. ^(w{10})$
  2.  
  3. ^w{0,10}$ # allows words of up to 10 characters.
  4. ^w{5,}$ # allows words of more than 4 characters.
  5. ^w{5,10}$ # allows words of between 5 and 10 characters.
  6.  
  7. {n,m} n <= length <= m
  8. {n} length == n
  9. {n,} length >= n
  10.  
  11. ^[A-Za-z0-9s$&+,:;=?@#|'<>.^*()%!-]{0,10}$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement