Description
Analyse if a char is a white-space character. Returns true if the argument is a space, form feed ('\f'
), newline ('\n'
), carriage return ('\r'
), horizontal tab ('\t'
), or vertical tab ('\v'
).
Syntax
isSpace(thisChar)
Parameters
thisChar
: variable. Allowed data types: char
.
Returns
true
: if thisChar is a white-space character.