regex to allow space and alphabets code example
Example 1: only letters and spaces regex
/^[a-zA-Z\s]*$/g
Example 2: space allow in regex
Just add a space in your character class.
^[a-zA-Z0-9_ ]*$
/^[a-zA-Z\s]*$/g
Just add a space in your character class.
^[a-zA-Z0-9_ ]*$