Skip to content

concat

string  concat(string s1, string s2, ...)

Concatenate the arguments to form a single string.

This is equivalent to s1 + s2 + s3 .... However, concat() is slightly more efficient with more than 2 strings.