Checks if the character is a lowercase letter (a-z).
bool islower(String c) { int code = _getCode(c); return code >= 97 && code <= 122; }