Previous: CompareMem function To the Table of Content Next: Continue procedure

- 4.62.2.15 -
Standard Units
System Unit
System Unit Procedures and Functions

Concat function

Targets: MS-DOS, OS/2, Win32

System Unit

Concatenates a sequence of strings.

Declaration:
function Concat(s1 [, s2,..., sn]: String): String;
Remarks:
The Concat function concatenates up to 255 characters. Additional characters are ignored. For instance, the following statements return the same results:
  s:= Concat('1234','567890');  // '1234567890'
  s:= '1234' + '567890';        // '1234567890'



Previous: CompareMem function To the Table of Content Next: Continue procedure
CompareMem function Table of Content Continue procedure

- 4.62.2.15 -