remove from list(value a, name of list b)

Removes value a from the named 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.

Description of 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