Combine Texts
Combine a list of text values using a specified separator.
Overview
This operation allows you to combine multiple text values into a single text, with each value separated by a specified character or symbol (e.g., a comma, semicolon, or dash). For example:
Separated by a comma:
Red
,Green
,Blue
->Red, Green, Blue
Separated by a colon:
Monday
,3:00 PM
->Monday: 3:00 PM
Separated by a space:
John
,Smith
->John Smith
Syntax
Data
The table below lists the names of the data elements in this operation and indicates which can be renamed in the syntax.
the texts
Yes
Parameters
Parameters are placeholders for data. Refer to the table below for details on each parameter in this operation. In the syntax, replace parameters with your own values.
list of texts
The list of texts to be combined.
"apples", "bananas", "oranges"
Yes
separator
The type of separator. Acceptable values:
comma
semicolon
colon
tab
newline
comma
Yes
Examples
1. Combining Error Messages
2. Joining Items in a Shopping List
Last updated
Was this helpful?