isempty()

Learn how to use the isempty() function to check if the argument is an empty string.

Returns true if the argument is an empty string or is null.

Syntax

isempty(value)

Parameters

NameTypeRequiredDescription
valuestring✔️The value to check if empty or null.

Returns

A boolean value indicating whether value is an empty string or is null.

Example

xisempty(x)
""true
“x”false
parsejson("")true
parsejson("[]")false
parsejson("{}")false