Home / lang / isspace 
IsSpace
Syntax
bResult = IsSpace ( sExpr AS String ) AS Boolean
bResult = Space? ( sExpr AS String ) AS Boolean

Returns TRUE if the String sExpr contains only spaces.

A space is one of the following characters:

Example
PRINT IsSpace(" \n \r\n")

True

Example
PRINT IsSpace("Gambas\n")

False


See also
Character Test Functions