Token$

Purpose:

Returns the n-th partial string separated by the separator of the third parameter.

Parameter:

String  String with separated parts (separated by the character given as 3rd parameter).

Number         Position of the result string (0-based)

String  Separator

String  optional: String to be returned if the value is out of bounds.

Return value:

String

Example:

Token$("ABC;DEF;GHI;JKL",2,";")   Result: "GHI"