Language:
Русский
English
Concat (function)
Concatenates a sequence of strings.
Declaration
function Concat(s1 [, s2,..., sn]: String): String;
Target
Windows, Real, Protected
Remarks
Each parameter is a string-type expression. The result is the concatenation of all the string parameters. If the resulting string is longer than 255 characters, it is truncated after the 255th character. Using the plus (+) operator returns the same result as using the Concat function:
S := 'ABC' + 'DEF';