Returns True if the specified string contains only alphabetical or numeric characters (not case-sensitive).
IsAlphaNumeric(String:String,AllowBlanks:Boolean):Boolean
String is the string value to test.
AllowBlanks specifies whether a blank string should be treated as numeric. Default is False.
IsAlphaNumeric(ABC123,True)
Returns True.