Insert()

Inserts the substring into the given string at the given position

Usage

STRING = Insert( substring, string, position )
Argument Summary
substring substring
string string
position position

Calling

Supports named-parameter calling allowing you to use the function like:

Insert(
   substring=?, 
   string=?, 
   position=?
);

Supports passing parameters as a structure using ArgumentCollection:

Insert( ArgumentCollection={
   substring : ?, 
   string : ?, 
   position : ?
} );