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—REQUIRED
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.