 |
Arios Newbie
Joined: 02 Jul 2004 Posts: 1
|
Posted: Fri Jul 02, 2004 1:24 am
Ifs and arrays |
I'm trying to make an alias that checks an array against another array, and if it finds a match, it adds what it finds to a variable.
So like .. array1 is checked against array2 for a match, if it finds one, assign to variable1. Thanx for the help. |
|
|
 |
LightBulb MASTER
Joined: 28 Nov 2000 Posts: 4817 Location: USA
|
Posted: Fri Jul 02, 2004 5:05 am |
Why?
Whatever you are doing would almost certainly be simpler with list-variables or record-variables.
#AL arraycheck #LOOP 0,%arrhigh( @array1) {#LOOP 0,%arrhigh( @array2) {#IF (%arrget( @array1, %i) = %arrget( @array2, %j)) {#ADDI variable1 {%arrget( @array1, %i)}}}}} |
|
|
 |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|