Gets the first element of a list.
listFirst(list [, delimiters])
returns string
Name | Type | Required | Default | Description |
---|---|---|---|---|
list | string | Yes | ||
delimiters | string | No | , |
A very basic listFirst example
listFirst("one,two,three,four");
Nesting list functions lets you move through the list in pieces.
listFirst(listRest(listRest("one,two,three,four")));