Exists | EXISTS
Syntax
EXISTS( [input] )
Parameters
input
Any data may be used as the input.
Return Value
FALSE if the INPUT is UNDEFINED or not set, otherwise TRUE.Description
Determine if a value is defined.Examples
EXISTS(undefined) # returns FALSEEXISTS(null) # returns TRUE# ${somevar} is not set
EXISTS(${somevar}) # returns FALSEEXISTS(0) # returns TRUEEXISTS("") # returns TRUE