Ljustify()

Returns the given string justified to the left, padding out the words with spaces accordingly

Usage

STRING = Ljustify( string, length )
Argument Summary
string string
length length of line

Calling

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

Ljustify(
   string=?, 
   length=?
);

Supports passing parameters as a structure using ArgumentCollection:

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