next up previous contents index
Next: Copy Up: Functions and Procedures Previous: Close

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, Delete, Insert, Pos, Length

Example
Program Example10;

{ Program to demonstrate the Concat function. }
Var 
  S : String;
  
begin
  S:=Concat('This can be done',' Easier ','with the + operator !');
end.



Michael Van Canneyt
Thu Sep 10 14:02:43 CEST 1998