📄️ Splitter.SplitByNothing
Returns a function that does no splitting, returning its argument as a single element list.
📄️ Splitter.SplitTextByAnyDelimiter
Returns a function that splits text into a list of text at any of the specified delimiters.
📄️ Splitter.SplitTextByCharacterTransition
Returns a function that splits text into a list of text according to a transition from one kind of character to another. The \ and \{1} parameters can either be a list of characters, or a function that takes a character and returns true/false.
📄️ Splitter.SplitTextByDelimiter
Returns a function that splits text into a list of text according to the specified delimiter.
📄️ Splitter.SplitTextByEachDelimiter
Returns a function that splits text into a list of text at each specified delimiter in sequence.
📄️ Splitter.SplitTextByLengths
Returns a function that splits text into a list of text by each specified length.
📄️ Splitter.SplitTextByPositions
Returns a function that splits text into a list of text at each specified position.
📄️ Splitter.SplitTextByRanges
Returns a function that splits text into a list of text according to the specified offsets and lengths.
📄️ 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 into a list of text at whitespace.