webCOMAND

#EXISTS

Syntax

#EXISTS($Variable)

Description

Check to see if a variable exists.  If the specified variable exists, return TRUE otherwise FALSE.

Example

#EXISTS($Variable) #/ will return FALSE
#ASSIGN($Variable,1)
#EXISTS($Variable) #/ will return TRUE

Result

false
true