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
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 2 years ago