Functions

ARRAYINDEX

Returns either a string or an integer from an array.

Syntax

string  ARRAYINDEX(string[] values, int index)
int?    ARRAYINDEX(int[] values, int index)

Example

This could be used to gather the domain from an email with the combined use of the SPLIT function.

ARRAYINDEX(SPLIT("support@simego.com","@"),2)

Will return 'simego.com'.