serializeList
Converts the list (any type) given in the first parameter to a string. The second parameter represents the separator to use. The third parameter is a boolean value indicating if each element of the expression should include quotes.
Category
List
Function syntax
serializeList(<parameters>)
Parameters
Signature and returned type
serializeList(<listInteger>,<string>,<boolean>)
serializeList(<listDecimal>,<string>,<boolean>)
serializeList(<listString>,<string>,<boolean>)
serializeList(<listBoolean>,<string>,<boolean>)
serializeList(<listDateTimeOnly>,<string>,<boolean>)
serializeList(<listDateTime>,<string>,<boolean>)
serializeList(<listDateOnly>,<string>,<boolean>)
serializeList(<listDuration>,<string>,<boolean>)
serializeList(<listPoint>,<string>,<boolean>)
Return a string.
Example
serializeList(["Hello","World"], " ", false)
Returns “Hello World”.
serializeList(["Hello", "World"], ",", true)
Returns ““Hello”,“World””.