Left justifies characters in a string of a specified length.
lJustify(String, length)
returns string
Name | Type | Required | Default | Description |
---|---|---|---|---|
String | string | Yes | ||
length | numeric | Yes |
<cfset length=10>
<cfset result = LJustify("abc",length)>
<cfoutput>
<pre>~#result#~</pre>
</cfoutput>