Ltrim()

Trims the whitespace from the left side of the string only, returning the new string

Usage

STRING = Ltrim( string )
Argument Summary
string string

Calling

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

Ltrim(
   string=?
);

Supports passing parameters as a structure using ArgumentCollection:

Ltrim( ArgumentCollection={
   string : ?
} );