Built-in Functions → concat

concat() is a string function that returns the concatenation of an arbitrary number of string expressions.

Signature

concat(string exp, string exp, ...)

The following table illustrates the concat() parameter:

ParameterDescription
string expexpressions evaluating to strings

Returns

string

Example

Concat and join the following strings: "San M", "ateo", and " Bridge"

concat("San M", "ateo", " Bridge")