Concatenate

Take two or more string inputs and combine them without spaces into a single text output.

You can also do this using Compose.

Input

Field Definition Type Required
text 1 First of two or more string inputs. String TRUE
text 2 Second of two or more string inputs. String TRUE

Output

Field Definition Type
output Concatenated input strings. String

Example

If you have two output fields - first name and last name - from an earlier card in your flow, you can create a single name output using the Concatenate function card:

  1. Add a third text input to the Concatenate function card.

  2. Map first name from another card to the text 1 input field.

  3. Enter a single space in the text 2 input field.

  4. Map last name from another card to the text 3 input field.

When the flow runs, the Concatenate card will combine all three input values and the output field will return a single string that contains <first name value><space><last name value>, such as John Smith.