Returns left-justified string of the specified field length by adding padding to the right of the string.
See also CJustify and RJustify.
LJustify(string, length)
String to be left-justified.
Length of field.
<!--- This example shows how to use LJustify ---> <CFIF NOT IsDefined("jstring")> <CFSET jstring=""> </CFIF> <CFIF IsDefined("FORM.justifyString")> <CFSET jstring=Ljustify(FORM.justifyString, 35)> </CFIF> <HTML> <HEAD> <TITLE> LJustify Example </TITLE> </HEAD> <BODY bgcolor=silver> <H3>LJustify Function</H3> <P>Enter a string, and it will be left justified within the sample field <FORM ACTION="ljustify.cfm" METHOD="POST"> <P><INPUT TYPE="Text" VALUE="<CFOUTPUT>#jString#</CFOUTPUT>" SIZE=35 NAME="justifyString"> <P><INPUT TYPE="Submit" NAME=""> <INPUT TYPE="RESET"> </FORM> </BODY> </HTML>