Concat

Declaration:
Function Concat (S1,S2 [,S3, ... ,Sn]) : String;
Description:
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.
Errors:
None.
See also:
Copy (474), Delete (478), Insert (518), Pos (543), Length (524)

Listing: refex/ex10.pp


Program Example10;

{ Program to demonstrate the Concat function. }
Var
  S : String;

begin
  S:=Concat('This can be done',' Easier ','with the + operator !');
end.