IsSpace(
     string:string
)
bool

Arguments

string

String to test.

Return value

True if string consists only of space characters.

Description

Returns True if string consists entirely of space characters (spaces, tabs, newlines), otherwise returns False.

Example:

Output(IsSpace("     "))
--> true

Output(IsSpace("_____"))
--> false

See also:
IsAlpha
IsDigit
IsLower
IsPunct
IsUpper