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:
Parameter | Description |
---|---|
string exp | expressions evaluating to string s |
Returns
string
Example
Concat and join the following strings: "San M", "ateo", and " Bridge"
concat("San M", "ateo", " Bridge")