Skip to main content

Join List into Text

Command description

Joins the items in a list with a specified delimiter and saves the resulting string as a variable.

Command Input Parameters

input parametersInput parameter typeDescription
List to ConvertlistList whose items will be joined
Delimiter TypeenumNo Delimiter, Standard Delimiter, or Custom Delimiter
Standard DelimiterenumSpace, Newline, or Tab. Required when Delimiter Type is Standard Delimiter
Custom DelimiteranyCustom delimiter converted to a string at runtime. Required when Delimiter Type is Custom Delimiter

Command Output Parameters

Output parametersOutput parameter typeDescription
Joined TextstrJoined text

Note

Each list item is converted to text before joining. With No Delimiter, the converted items are concatenated directly.

AI Workflow Generation Notes

  • Input must be a list; delimiters are only inserted between list items.