Return the value of the variable defined by an string.
Eval ( string )
| string | string representing name of the variable. |
| Success: | Returns the value of the variable. |
| Failure: | Returns "" (blank string) with @error set not to 0. |
Local $a_b = 12
Local $s = Eval("a" & "_" & "b") ; $s is set to 12
$s = Eval("c") ; $s = "" and @error = 1