Right()

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

Usage

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

Calling

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

Right(
   string=?, 
   length=?
);

Supports passing parameters as a structure using ArgumentCollection:

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