Syntax
rjust(string,length, [character])
Description
The rjust() function will right align the string, using a specified character (space is default) as the fill character.
Example
include("string") println(rjust("foobar", 20 , "+")) println(rjust("foobar", 20)) ++++++++++++++foobar foobar