Concatenate
Function: Concatenate
This function takes two pieces of text and joins them together, placing the second piece directly after the first. It's useful for combining different pieces of information into a single, longer text string.
Input
- Left Text: The first piece of text you want to combine. This is a required input.
- Right Text: The second piece of text you want to combine, which will be placed immediately after the "Left Text". This is a required input.
Output
- Result: This is the name of the variable where the newly combined text will be stored. For instance, if you name it
FullName, the combined text will be available under the variableFullNamefor use in subsequent steps of your application.
Execution Flow
Real-Life Examples
Here are some practical ways you can use the Concatenate function in your applications:
Example 1: Creating a Full Name from Separate Fields
Imagine you have a customer's first name and last name stored in different places, and you need to display their full name.
- Inputs:
- Left Text: "John"
- Right Text: "Doe"
- Result: "CustomerFullName"
- Result: The system creates a variable named
CustomerFullNamethat holds the text "JohnDoe".
Example 2: Building a Product Identifier
You might need to combine a product code with a version number to create a unique identifier for an item.
- Inputs:
- Left Text: "PROD-XYZ-"
- Right Text: "V2.0"
- Result: "FinalProductCode"
- Result: The system creates a variable named
FinalProductCodethat holds the text "PROD-XYZ-V2.0".
Example 3: Assembling a Location String
If you have a city and a state in separate variables, you can combine them to form a complete location string.
- Inputs:
- Left Text: "New York"
- Right Text: ", NY"
- Result: "CityAndState"
- Result: The system creates a variable named
CityAndStatethat holds the text "New York, NY".