I have a text field which takes emails, more than one email is separated by comma, so I want a regular expression which will not allow space in that text field i.e the space bar will not work. pls help..
Thanks.
I have a text field which takes emails, more than one email is separated
Share
[^ ]means anything except the space character. If you wanted to match all whitespace and not just the space character, use/\S/