Saltar al contenido principal

Insert

Inserts a substring into a string beginning at a specified point.

Structure

Insert(Source: string; var S: string; Index: Integer);

Parameters

Description

Insert merges Source into S at the position S[index].

Source is a string-type expression. S is a string-type variable of any length. Index is an integer-type expression. It is a character index and not a byte index. |