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.
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"}