remove from list()
This function removes the value at position a (starting with 1) from a list b.
The result of the function is the removed value or an empty string if the list or the position being specified did not exist.
Note: Hidden values can be removed as well. See the explanations for the Empty Flag.
Parameters
Parameter |
Description |
a |
Position number to be removed (starting with "1"). |
b |
(optional) Name of the list. Default: "default". |
Examples
Defined is the list MyList with values {Value,val1;val2}.
Parameter a |
Parameter b |
Result |
Values in list |
1 |
MyList |
Value |
val1;val2 |
2 |
MyList |
|
val1;val2 |
1 |
MyList |
val1;val2 |
|