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.
List
serializeList(<parameters>)
Parameter | Type |
---|---|
String | String |
Boolean | Boolean |
DateTimeOnly | DateTimeOnly |
List | listString |
List | listBoolean |
List | listPoint |
List | listDecimal |
List | listDuration |
List | listDateTime |
List | listDateTimeOnly |
List | listDateOnly |
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.
serializeList(["Hello","World"], " ", false)
Returns “Hello World”.
serializeList(["Hello", "World"], ",", true)
Returns ““Hello”,“World””.