Nóta
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað aðskrá þig inn eða breyta skráasöfnum.
Aðgangur að þessari síðu krefst heimildar. Þú getur prófað að breyta skráasöfnum.
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. |