Function: |
Removes a value from an array. i.e. -
create(@myArray("great","fun","foo","bar")); // it is vital to create the array // object before using it
remove ("first") from (@myArray); // removes the first value from myArray
remove ("last") from (@myArray); // removes the last value from myArray
remove (0) from (@myArray); // removes the first value from myArray
remove (lengthOf(@myArray)-1) from (@myArray); // removes the last value // from myArray
This does not work outside of GALiRe Script. |
|