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