Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. qr/.{1,100}/i
  2.  
  3. /p{ascii}+/
  4.  
  5. print "String okay" unless /P{ascii}/
  6.  
  7. /^[A-Za-z0-9_]*$/
  8.  
  9. /^[^öäü]*$/
  10.  
  11. Example:-
  12. sdddd -- allowing
  13. @xxx123 -- not allow
  14. abcdfe4 -- allow
  15. 123 ba xx -- allow
  16. pqrs_ -- Not allow
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement