Advertisement
juniorsabbath

Validation pattern html

Jun 24th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. ([A-z0-9Γ€-ΕΎ\s]){2,}
  2. A-z - this is for all latin characters
  3.  
  4. 0-9 - this is for all digits
  5.  
  6. Γ€-ΕΎ - this is for all diacritics
  7.  
  8. \s - this is for spaces
  9.  
  10. {2,} - string needs to be at least 2 characters long
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement