Rjustify()

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

Usage

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

Calling

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

Rjustify(
   string=?, 
   length=?
);

Supports passing parameters as a structure using ArgumentCollection:

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