- 4.67.2.42. -
Table of Contents
4. Standard Units
4.67. System - Built-in routines
4.67.2. System Unit Procedures and Functions
4.67.2.42. Insert procedure
4.67.2.42. 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.
- 4.67.2.42. -