string.rJustify()
Right justifies characters of a string.
string.rJustify( length=number )
Returns: String
Examples
name = "yoyo".rjustify(10);
writeDump(name);
writeDump(len(name));
writeDump(len(trim(name)));
writeDump(len(ltrim(name)));
writeDump(len(rtrim(name)));