ListGetAt
Retrieves an item from a delimited list at the specified position
Method Signature
Arguments
Argument
Type
Required
Description
Default
list
string
true
string list to filter entries from
position
integer
true
numeric the one-based index position to retrieve the value at
delimiter
string
false
string the list delimiter
,
includeEmptyFields
boolean
false
boolean whether to include empty fields in the returned result
false
multiCharacterDelimiter
boolean
false
boolean whether the delimiter is multi-character
false
Examples
Simple Example
Returns the 2nd element in the list
Result: bar
Example with Delimiter
Returns the 3rd element in the list using a custom delimiter
Result: me
Example with IncludeEmptyValues
Returns the 4th element in the list, treating the empty element as a value
Result: lorem
Additional Examples
Related
Last updated
Was this helpful?