You have a string that you would like to split each word/character by a delimiter to create a list.
Splits text on a delimiter into a list of strings.
Max Splits
The maximum number of splits. If not specified or -1, then there is no limit on the number of splits (all possible splits are made)
Seperator
Character or sequence of characters to split on (default is ), such as ' , ',':', etc.
Text to split
The string to be split.
Inputs:
Max Splits: -1
Seperator: (no value was provided so default of space will be used)
Text to split: The quick brown fox jumps over the lazy dog
Result of Example:
Last updated 8 months ago
Was this helpful?
[ "The", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog" ]