Function:
Retrieve an item from a list in a string
Syntax:
Entry(<Itemlist>, <Position>, <Delimiter>)
Example:
Let TheLine="List Item 1:List Item 2:List Item 3:List Item 4:List Item 5:List Item 6"
Let A=Entry( "%%Theline%%", 2, : )
Notes:
If a comma is used as a delimiter, it must be enclosed within quotes when used with the Entry command
Let TheLine="List Item 1,List Item 2,List Item 3,List Item 4,List Item 5,List Item 6"
Let A=Entry( "%%Theline%%", 2, "," )
The above sample is from Example 71.