isAlphaNumeric method

bool isAlphaNumeric(
  1. String c
)

Implementation

bool isAlphaNumeric(String c) {
  return isAlpha(c) || isDigit(c, false);
}