Previous: 4.67.2.14. CompareMem function To the Table of Contents Next: 4.67.2.16. Continue procedure
4.67.2.14. CompareMem function Table of Contents 4.67.2.16. Continue procedure

- 4.67.2.15. -
Table of Contents
4. Standard Units
4.67. System - Built-in routines
4.67.2. System Unit Procedures and Functions
4.67.2.15. Concat function


4.67.2.15. 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: 4.67.2.14. CompareMem function To the Table of Contents Next: 4.67.2.16. Continue procedure
4.67.2.14. CompareMem function Table of Contents 4.67.2.16. Continue procedure

- 4.67.2.15. -