Left()

Returns the given string trimmed to the size given from the left of the string

Usage

STRING = Left( string, length )
Argument Summary
string string
length length

Calling

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

Left(
   string=?, 
   length=?
);

Supports passing parameters as a structure using ArgumentCollection:

Left( ArgumentCollection={
   string : ?, 
   length : ?
} );