...
Argument | Type | Description |
---|---|---|
array | Array | List of values |
separator | String | String to be used to separate the concatenated strings generated by the function |
ignoreNullFlag | Boolean | Flag to determine whether NULL strings are ignored by the function (set . Set to 1 or 0), where 1 is ignore and 0 is include. By default NULL values are included. |
stringFormat | String | Optional parameter representing which applies to dates only. This represents the format to use for each element of the list where the list items are dates. |
Examples
listToString(["apple",1,"John",NULL,"dog"])
...