Returns whether the specified character is a white space.
Syntax
isSpace( character )
character.isSpace( )
Parameters
character
|
the character to check.
|
Returns
boolean
|
true if it is a white space [ horizontal tab, new line, form feed, carriage return, space ].
false if it is not a white space.
|
Example
if c.isSpace( ) then
break
end
|