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:
PRINT IsSpace(" \\n \\r\\n") <hr>True
PRINT IsSpace("Gambas\\n") <hr>False