ListInsertat()

Inserts a new element into the list at the given position, returning the newly created list

Usage

STRING = ListInsertat( list, position, value, delimiter )
Argument Summary
list list
position position
value value
delimiter delimiter - default comma (,) [optional]

Calling

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

ListInsertat(
   list=?, 
   position=?, 
   value=?, 
   delimiter=?
);

Supports passing parameters as a structure using ArgumentCollection:

ListInsertat( ArgumentCollection={
   list : ?, 
   position : ?, 
   value : ?, 
   delimiter : ?
} );