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 parameters | Input parameter type | Description |
|---|---|---|
| List to Convert | list | List whose items will be joined |
| Delimiter Type | enum | No Delimiter, Standard Delimiter, or Custom Delimiter |
| Standard Delimiter | enum | Space, Newline, or Tab. Required when Delimiter Type is Standard Delimiter |
| Custom Delimiter | any | Custom delimiter converted to a string at runtime. Required when Delimiter Type is Custom Delimiter |
Command Output Parameters
| Output parameters | Output parameter type | Description |
|---|---|---|
| Joined Text | str | Joined 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.