Checks if the character is alphanumeric (A-Z, a-z, 0-9).
bool isalnum(String c) => isalpha(c) || isdigit(c);