Skip to main content

Get help for ARIS

Concatenate

The Concatenate operator combines individual texts into a single text. It is used with the Text data type.

When you combine texts, the Concatenate operator returns a single text.

Example 85.

Create a text that includes a user's first and last name:



CONCATENATE('John',’ ’,’Doe’)
Example 86.

Dynamically concatenate first and last names that were entered in a form:



CONCATENATE(${Model.formData.page.FIRST_NAME},' ',${Model.formData.page.LAST_NAME})
Example 87.

This collects the first and last names from form fields and combines them into one text.