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 (477), Delete (481), Insert (521), Pos (546), Length (527)

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.