I have created a preg_match below with PHP Preg_match()
preg_match("/^[a-zA-Z -:]{5,15}$/")
according to my condition
- It should only contain Lower and upper case letters.
- Should not contain numbers.
- some special characters like (:,-)
- Allow space as well.
But my code is accepting numbers, #, comma(,) special characters.