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

Separator

The literal text to split by (not a regular expression). Nodes created in the editor are seeded with ,. An empty separator splits the text between every character.

Input

Textrequired
The text you want to split.

Output

Array
A list of text values after the split.