Whatever message this page gives is out now! Go check it out!
RJustify(string, length)Parameter | Description |
string | A string enclosed in quotation marks, or a variable that contains one. |
length | A positive integer or a variable that contains one. Length of field in which to justify string. |
<cfscript>
string="The quick brown fox jumps over the lazy dog"
length=20
writeOutput(RJustify(string,length))
</cfscript>