SPLIT

Split a string based on a given delimiter

SPLIT( text, delimiter , index)

Returns a portion of a text based on a given delimiter and index

Arguments

Argument

Description

text

Text to split at given delimiter

delimiter

Delimiter with which to split text

index

Index of split text to return

Output

Outputs a portion of a text

Example

SPLIT( "Missoula", "o", 1 )
>> "Miss"

SPLIT( "Missoula", "o", 2 )
>> "ula"

Last updated