Right justifies characters of a string.
A copy of a string, right-justified in the specified field length.
Display and formatting functions, String functions
RJustify(string, length)
<cfscript>
string="The quick brown fox jumps over the lazy dog"
length=20
writeOutput(RJustify(string,length))
</cfscript>
Sign in to your account