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.
Syntax
Splitter.SplitTextByWhitespace(optional quoteStyle as nullable number) as function
About
Returns a function that splits text into a list of text at whitespace.
Example 1
Split the input by whitespace characters, treating quotes like any other character.
Usage
Splitter.SplitTextByWhitespace(QuoteStyle.None)("a b#(tab)c")
Output
{"a", "b", "c"}