Previous: Include procedure To the Table of Content Next: Int function

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

Insert procedure

Targets: MS-DOS, OS/2, Win32


System Unit

Inserts a substring into a string.

Declaration:
procedure Insert(Src: string;
                  var Dst: string;
                  Pos: Longint);
Remarks:
Src is a string-type expression. Dst is a string-type variable. Pos is an integer expression. Insert inserts Src into Dst at the Pos-th position. If the resulting string is longer than 255 characters, it is truncated after the 255th character.


Previous: Include procedure To the Table of Content Next: Int function
Include procedure Table of Content Int function

- 4.62.2.42 -