Concat Operator - Haufe-Lexware/haufe.no-frills-transformation GitHub Wiki
Concatenates two strings.
| What | Type |
|---|---|
| Syntax | Concat(a, b) |
a |
any |
b |
any |
| Return type | string |
Example: Concat($firstName, Concat(" ", $lastName))
Infix notation
The Concat operator may also be noted as an infix operation, using the + operator:
| Prefix notation | Infix notation |
|---|---|
Concat($this, $that) |
$this + $that |
Concat($FirstName, Concat(" ", $LastName)) |
$FirstName + " " + $LastName |