Checks if the character is a blank character (space or tab).
bool isblank(String c) { int code = _getCode(c); return code == 32 || code == 9; }