Skip to main content
Version: Next

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 = ~
  • outputs

    • result = a~b~c

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