DumpVars(
     [string:pattern...]
)
string

Arguments

pattern...

Optional. One or more optional regular expressions.

Return value

Concatenated list of all current variables.

Description

Returns a concatenated list of all current evaluator variables and their types/values. Useful for debugging.

With no arguments all variables will be returned, otherwise you can supply one or more regular expressions to match variables by name.

Example:

a = 5;
name = "jon";
Output(DumpVars());
--> a    (1) : 5
--> name (7) : jon