Skip to main content
Functions

Join Texts

Join Texts

Joins the items of a list into a single text, interleaving them with a defined separator. It can also add a prefix and a suffix to the final result. The natural complement of the Separate text action, useful for rebuilding data after processing or assembling formatted strings such as lists, paths or queries.


Options

Enter the separator character

Enter the character or excerpt that will be inserted between each item when the text is joined. For example, a comma, a semicolon or any other delimiter.

Words that will be joined to the text

Enter the list of words or values that will be concatenated. Each item of the list will be included in the result separated by the character defined above.

Advanced Options

Start

Number of the character where the join starts.

End

Number of the character where the join ends.

Returns

Custom code

js
actions["action-id"].value // text resulting from joining all the items (Text)

Field selection

  • value — text joined with the separator, prefix and suffix applied (Text)

Rules and Conditions

  • The Separator and Words fields are required.
  • The Start and End fields are optional.
  • If the list is empty, the result is only the Start and End values concatenated (if provided), or an empty string.