Check that a string only consists of alphanumeric characters.
isAlphaNum("abcdefghijklmnopqrstuvxyz") => true isAlphaNum("ABCDEFGHIJKLMNOPQRSTUVXYZ") => true isAlphaNum("1234567890") => true isAlphaNum("=") => false
true if it only contains alphanumeric characters.
the string of characters
Check that a string only consists of alphanumeric characters.
Returns
true if it only contains alphanumeric characters.