jquery - Javascript Expression that take only alphabates -


i have done not working can please correct following regex.

/^[a-za-z.\s]+$/

if want alphabets, remove . regex. match alphabets , spaces.

/^[a-za-z\s]+$/ 

i'll recommend use instead of \s

/^[a-za-z ]+$/ 

so that, other space characters(tabs, etc.) not matched.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

user interface - how to replace an ongoing process of image capture from another process call over the same ImageLabel in python's GUI TKinter -

javascript - Restarting Supervisor and effect on FlaskSocketIO -