Function Concat (S1,S2 [,S3, ... ,Sn]) : String;
Concat concatenates the strings S1,S2 etc. to one long string. The resulting string is truncated at a length of 255 bytes.
The same operation can be performed with the + operation.
None.
Copy, Delete, Insert, Pos, Length
Program Example10; { Program to demonstrate the Concat function. } Var S : String; begin S:=Concat('This can be done',' Easier ','with the + operator !'); end.