up previous next
ConcatStrings    --    concatenate strings


Syntax
ConcatStrings(L: LIST of STRING): STRING

Description
This function returns the string obtained by concatenating the strings in L. This function is faster than concat .

NOTE: to concatenate 2 strings use str1 + str2.

Example
/**/  ConcatStrings(["abc", "def", "ghi"]);
abcdefghi

See Also