Description
Analyse if a char is a white space, that is space, formfeed ('\f'), newline ('\n'), carriage return ('\r'), horizontal tab ('\t'), and vertical tab ('\v')). Returns true if thisChar contains a white space.
Syntax
isWhitespace(thisChar)
Parameters
thisChar
: variable. Allowed data types: char
Returns
true
: if thisChar is a white space.