lJustify

Left justifies characters in a string of a specified length.

lJustify(String, length) → returns string

Argument Reference

String string
Required

length numeric
Required

Links more information about lJustify

Examples
Sample code invoking the lJustify function

<cfset length=10>
<cfset result = LJustify("abc",length)>
<cfoutput>
    <pre>~#result#~</pre>
</cfoutput>

Fork me on GitHub