remove from list()
This function removes value a from list b.
The result of the function is the removed value or an empty string with set Empty Flag if nothing was found.
Note: Hidden values can be removed as well. See the explanations for the Empty Flag.
Parameters
Parameter |
Description |
a |
Value to be removed. |
b |
(optional) Name of the list. Default: "default". |
Examples
Defined is a list myList with values {value, val1;val2}
Parameter a |
Parameter b |
Result |
Values in list |
value |
myList |
value |
val1;val2 |
value |
myList |
|
val1;val2 |
val1;val2 |
myList |
val1;val2 |
|