August 2003
Intermediate to advanced
1140 pages
68h 45m
English
LJustify
LJustify(string, length)Left-justifies string within a field of
length characters. Example:
<cfset OriginalString = "ColdFusion">
<cfoutput>
<b>Original String (quoted):</b> "#OriginalString#"<br>
<b>Left-justified String (quoted):</b> "#LJustify("ColdFusion", 20)#"
</cfoutput>