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

Removes the value a from the named list with name b. If no name is specified default will be used.

The result of the function is the removed value or an empty string if the value or the list did not exist.

Hint: '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