Name

isempty — Returns whether the string s is empty.

Synopsis

boolean isempty ( string s );
 

Parameters

string s

String

Return

boolean

Emptiness of string s

Description

Notice that the string s must not be nil.

Usage

  isempty("") -> true
 

  isempty("test") -> false