Mwnci isspace() Function

Syntax

isspace(string)

Description

The isspace() function  returns true if all the characters in a string are whitespaces, otherwise false.

Example

include("string")
println(isspace("foobar"))
println(isspace("    "))

false
true