Whatever message this page gives is out now! Go check it out!
LJustify(string, length)Parameter | Description |
string | A string or a variable that contains one |
length | Length of field in which to justify string |
<cfscript>
string="Hello CFFiddle, how are you?"
length=50
writeOutput(LJustify(string,length))
</cfscript>