Gets the last element of a list.
listLast(list [, delimiters, includeEmptyValues ])
→ returns string
,
true
false
A very basic listLast example
listLast("one,two,three,four");
Expected Result: four
A more advanced listLast example
listLast("one/two\three/four", "\/");
Expected Result: four