s = concat(string1, string2ʃ, ..., stringNʅ);
The
concat function concatenates the values of two or more string expressions (
string1 +
string2 + ... +
stringN). The strings can be alphanumeric items, text strings, or functions that return strings. You can also use the
+ operator to concatenate strings.
If you are concatenating many strings, you might consider using
StringWriter, an object that supports incrementally building a string.
The function returns the concatenated string.
FIRST_NAME = "John";
LAST_NAME = "Henry";
string full_name = concat(FIRST_NAME, " ", LAST_NAME); // full_name is: John Henry