Skip to main content

Text: Split

Split a text into a list of text values.

Example
Input, some words separated by a comma:
"Hello, World"
Ouput, a list of text values:
["Hello", "World"]

Parameters

SeparatorREQUIRED

The character or text to split the text by.

Input

Text
The text you want to split.

Output

Array
A list of text values after the split.