Home / lang / isspace 
Previous  Next  Edit  Rename  Undo  Refresh  Search  Administration   
fr  de  es  it  nl  pl  pt  pt_BR  ca  ar  fa  vi  ja  ru  zh  zh_TW  eo 
Documentation
History
 
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:

Examples

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

True

PRINT IsSpace("Gambas\\n")

False

See also

Character Test Functions