Concat
Syntax
Concat(string1|string2[|string3…])
Description
Concatenates the strings in the parameters.
Parameters
| Parameter | Description |
|---|---|
|
string1 |
Beginning string for concatenation |
|
string2 |
A string to be concatenated to string1. |
|
string3… |
(Optional) Additional strings to be concatenated. |
Returns
Returns a string resulting from concatenating the strings in the parameters.
Example
The following table presents examples of using the Concat function:
| Expression | Result |
|---|---|
|
Concat(''hello ''|''and ''|''welcome '|''to ''|''PTF'') |
hello and welcome to PTF |