add to list(a,b,c)


Inserts every token from a, separated by delimiter c into the named list with the name b.

The named list is previously deleted.

If the list name is left empty then the name default is used. This function is the reversal of dump list(list a, delimiter b).

Description of Parameters

Parameter

Description

a

Tokens to add.

b

Name of list.

c

Delimiter of tokens (use \NL for linefeed).

Example

Parameter a

Paramter b

Parameter c

Result

aa*bb*cc

MyList

*

3

After the function execution, the list MyList contains the values aa, bb and cc.