concat() Function

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

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.

Syntax

concat( {text, …} )

text: (Text Array) One of the strings or a set of strings that will be concatenated.

Returns

Text

Notes

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 04, 2022 (07:10:52 PM)

On This Page

FEEDBACK