Skip to content

Latest commit

 

History

History
19 lines (11 loc) · 555 Bytes

README.md

File metadata and controls

19 lines (11 loc) · 555 Bytes

Eval()

Evaluate Expressions Dynamically in Strings.

Credits

ExprEval() by Uberi

Return

An array (object) with the result of each expression.

Parameters

String:

The input string to be evaluated. You can enter multiple expressions separated by commas (inside the string).

CustomVars [optional]

An Associative Array object containing variables names as keys and values to replace them. For example, setting it to {A_Index: A_Index} inside a loop will replace occurrences of A_Index with the correct value for the iteration.