Entry

Returns an entry from a delimited list at the specified index.

Returns the nth (1 being the first item) from a list. Returns an empty string if the entry does not exist. This differs from the CSV Expression as you can specify separators other than commas.

Expression
Databox Value
Result

Entry(2, ";")

line1; line2; line3

line2

Entry(3,"/")

07/11/2023

2023

Entry(3,",")

item 1, item 2, item 3

item 3

Last updated