$formatLeft

Appends a character sequence consisting of the given character to the right of the given string.
Syntax
    $formatLeft{length}{string}{character}
DocumentationAppends a character sequence consisting of the given character to the right of the given string.

    Parameters:
      length, the length of the resulting string.
      string, the string to be formated.
      character, an optional parameter (defaults to '$\ ') to set the sequence character.
    Returns:
      a formated string of the given length.
    Note:
if sequence_length the length of the character sequence appended to the string then
sequence_length = length - string_length. If sequence_length < 0 the original string is returned.
Examples
Append the sequence '####' to the right of the string 'some_string':

    $set{string}{some_string}
    $set{string}{$formatLeft{$add{$length{$get{string}}}{4}}{$get{string}}{#}}
GroupString
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters2
Maximum parameters 3