Checks if the character is alphabetic (A-Z, a-z).
bool isalpha(String c) { int code = _getCode(c); return (code >= 65 && code <= 90) || (code >= 97 && code <= 122); }