Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
These functions split text.
Name | Description |
---|---|
Splitter.SplitByNothing | Returns a function that does no splitting, returning its argument as a single element list. |
Splitter.SplitTextByCharacterTransition | Returns a function that splits text into a list of text according to a transition from one kind of character to another. |
Splitter.SplitTextByAnyDelimiter | Returns a function that splits text by any supported delimiter. |
Splitter.SplitTextByDelimiter | Returns a function that will split text according to a delimiter. |
Splitter.SplitTextByEachDelimiter | Returns a function that splits text by each delimiter in turn. |
Splitter.SplitTextByLengths | Returns a function that splits text according to the specified lengths. |
Splitter.SplitTextByPositions | Returns a function that splits text according to the specified positions. |
Splitter.SplitTextByRanges | Returns a function that splits text according to the specified ranges. |
Splitter.SplitTextByRepeatedLengths | Returns a function that splits text into a list of text after the specified length repeatedly. |
Splitter.SplitTextByWhitespace | Returns a function that splits text according to whitespace. |