Core Function isSpace
From Sputnik Wiki
isSpace( <expression> )
Contents |
Description
Check if string contains only whitespace.
Parameters
expression
The string to use.
Return Value
Success: Returns 1.
Failure: Returns 0.
Remarks
None.
Example
$str = "The quick brown fox"; MsgBox( isSpace($str) );