Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 790 Bytes

File metadata and controls

42 lines (34 loc) · 790 Bytes

Insert

Description

Procedure Insert will insert the specified string into a destination string.

PROCEDURE Insert(
				source   : DYNARRAY[] of CHAR;
				VAR dest : DYNARRAY[] of CHAR;
				index    : INTEGER);
def vs.Insert(source, index):
    return dest

Parameters

Name Type Description
source DYNARRAY[] of CHAR String to be inserted.
dest DYNARRAY[] of CHAR Destination string.
index INTEGER Position where string is to be inserted.

Examples

VectorScript

theStr:='sample';
originalStr:='A string';
Insert(theStr,originalStr,3);
{inserts 'sample' into the target string}

Python

Version

Availability: from All Versions

Category