Skip to main content

String Split

A expression editor function that splits a string into an array.

Updated yesterday

Overview

This function splits one string into an array of strings, separated when the separator string is found. The separator is removed.


Parameters

stringSplit("string", "separator")

String

The string that is split based on the separator.

Separator

The character or string that splits the string.


For example...

stringSplit("Montana", "n")

Returns the array [mo, ta, a].

Did this answer your question?