Split a string based on a given delimiter
SPLIT( text, delimiter , index)
text
delimiter
index
Returns a portion of a text based on a given delimiter and index
Argument
Description
Text to split at given delimiter
Delimiter with which to split text
Index of split text to return
Outputs a portion of a text
SPLIT( "Missoula", "o", 1 ) >> "Miss" SPLIT( "Missoula", "o", 2 ) >> "ula"
Last updated 4 years ago
Was this helpful?