VocabularysplittingInputsOutputsWord descriptionSplits a string along line breaks.
NotesThese are considered line breaks:
\n | Line Feed |
\r | Carriage Return |
\r\n | Carriage Return + Line Feed |
\v | Line Tabulation |
\f | Form Feed |
\x1c | File Separator |
\x1d | Group Separator |
\x1e | Record Separator |
\x85 | Next Line (C1 Control Code) |
\u002028 | Line Separator |
\u002029 | Paragraph Separator |
ExamplesUSING: prettyprint splitting ;
"Hello\r\nworld\n" split-lines .
{ "Hello" "world" }
DefinitionMethods