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


Removes the value at position a (starting with 1) from a named list with name b. If no name is given default is used.

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

Hint: 'Hidden' values can be removed as well. See the explanations for the Empty Flag.

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