IsSpace( string:string ) → bool
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