Free cookie consent management tool by TermsFeed concat() Function
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: Fri, Nov 10, 2023 (03:42:48 PM)

concat() Function

FEEDBACK