How can I check if a string contains only numbers and alphabets ie. is alphanumeric?
100% alphanumeric RegEx (it contains only alphanumeric, not even integers & characters, only alphanumeric)
For example:
special char (not allowed) 123 (not allowed) asdf (not allowed) 1235asdf (allowed)
String name="^[^]\\d*[a-zA-Z][a-zA-Z\\d]*$";