Mid()

Returns substring within the string from the start position for the number of characters

Usage

STRING = Mid( string, start, number )
Argument Summary
string string
start start position
number number of characters

Calling

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

Mid(
   string=?, 
   start=?, 
   number=?
);

Supports passing parameters as a structure using ArgumentCollection:

Mid( ArgumentCollection={
   string : ?, 
   start : ?, 
   number : ?
} );