Regular Expressions: Only numbers, letters, spaces and restricted string length
Only numbers, capital, small letters (English) and spaces are allowed. String length must be between 1 to 10 characters.
Regex:
^[A-Za-z0-9 ]{1,10}$
If you would like to add some chars for example: ,.- then just add them like that:
Regex:
^[A-Za-z0-9 ,.-]{1,10}$

(195)

