isalpha method

bool isalpha(
  1. String c
)

Checks if the character is alphabetic (A-Z, a-z).

Implementation

bool isalpha(String c) {
  int code = _getCode(c);
  return (code >= 65 && code <= 90) || (code >= 97 && code <= 122);
}