Regular Expression for Alphanumeric
I have to restrict user's to enter only alphanumeric characters in a text box.
The user must enter both numeric and alphabetical characters.
I have used this [a-zA-Z0-9]+$s regular expression.
Please help me to solve the issue