I posted a problem in scripts section and some people didn't think it was possible without performing some crazy double-while pseudo code loop XD
Anyway, even then, it didn't seem to do what I needed, so I think this calls for an identifier request.
I have 12 variables:
%var.1 %var.4
%var.2 %var.5
%var.3 %var.6
and
%iable.1 %iable.4
%iable.2 %iable.5
%iable.3 %iable.6
There needs to be an easy way to check all of the variables with a similar name using a wildcard (in 1 function!)
like...
check if ANY of the %var.* variable values match up with ANY %iable.* variable values .
if (%var.* == %iable.*) is not possible...
so how about an identifier?
$chkall() // Check All ( variable with wildcard )
if ($chkall(%var.*) == $chkall(%iable.*)) { YAY }
Last edited by BNX; 30/07/05 08:49 AM.