This is my regular expression. But it does not accept white space. How to modify it so that it will accept white space in the middle or end but should not accept only white spaces.
/^[a-zA-Z]+[a-zA-Z0-9._-]+$/'
This is my regular expression. But it does not accept white space. How to modify it so that it will accept white space in the middle or end but should not accept only white spaces.
/^[a-zA-Z]+[a-zA-Z0-9._-]+$/'