...
The following script extracts a set of values from a list or array of positive numbersvalues, to create a sublist.
Code Block |
---|
do( $list = $args[1], $firstInteger$startPosition = $args[2], $secondInteger$endPosition = $args[3], $subList = [], forEach($i,$firstInteger$startPosition..$secondInteger$endPosition, $subList = addElement($subList, getElement($list,$i)), _NULL ), $subList ) |
The script does not handle zeros or negative numbers.
Using the Script as a Macro
...
Code Block |
---|
subList([value1, value2, value3,...], <startPosition>, <endPosition>) |
Argument | Type | |
---|---|---|
valuen | A value of any type | |
startPosition | Integer representing where to start extracting values. | Cannot be zero or a negative number. |
endPosition | Integer representing where to stop extracting values. |
...