concat
Returns the concatenation of an arbitrary number of string expressions.
Example
concat("San M", "ateo", " Bridge")
Syntax
concat(string str1, string str2, . . ., string strN)
- strN: expressions evaluating to
string
s
Returns
string
Notes
concat
takes an arbitrary number of string
fragments and joins them together to produce on string
.