When to use
- Break a list into individual lines
- Tokenize a simple list into separate items
text_prompt → split_text → list_selector.
Inputs
text
required
The text to split. Required.
Outputs
text
The resulting segments as an array.
Configuration
string
default:"\\n"
The character or characters to split on. Use
\n for newlines.boolean
default:"true"
Remove leading and trailing whitespace from each segment.
boolean
default:"true"
Drop segments that are empty after splitting.