Join List
Converts all elements in list into a string separated by separator
Description
Converts all elements in list into a string separated by separator.
Example:
-
inputs
- source =
["a", "b", "c"]
- separator =
~
- source =
-
outputs
- result =
a~b~c
- result =
Inputs
- Source (Object): The collection to convert. Could be in the form of List, Array and QueryResult
- Separator (String): The element separator
Outputs
- Result (String): The joined string
- Error Flow (Error Flow): Triggered by providing unexpected type of the source