Concat

Summary

The Concat function returns a character string that is the result of concatenating the two input strings.

Syntax

Concat(<string_expr1, string_expr2>)

Return Type

String

Details

The string expr2 is concatenated to string expr1.

Examples

{fn Concat('abc', 'def')}
abcdef
{fn Concat(12, 'gh')}
12gh
 
Concat('abc', 'def')
abcdef
 
Concat(12, 'gh')
12gh

Related Functions