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
Combiner.CombineTextByEachDelimiter(delimiters as list, optional quoteStyle as nullable number) as function
About
Returns a function that combines a list of text values into a single text value using a sequence of delimiters.
Example 1
Combine a list of text values using a sequence of delimiters.
Usage
Combiner.CombineTextByEachDelimiter({"=", "+"})({"a", "b", "c"})
Output
"a=b+c"