concat() Function

Function

concat( text )

Concatenates the specified strings into one string, without a separator.

Parameters

Keyword Type Description

text

Text Array

One of the strings or a set of strings that will be concatenated.

Returns

Text

Usage considerations

If an array is passed as a parameter, that array is converted to a string first and then concatenated. Parameters that don't hold a text data type are converted to string before being operated on.

Examples

concat({"a","b","c"},{"d","e","f"}) returns abcdef

Open in Github Built: Wed, Aug 16, 2023 (04:37:39 PM)

On This Page

FEEDBACK