LJustify

Returns left-justified string of the specified field length by adding padding to the right of the string.

See also CJustify and RJustify.

Syntax

LJustify(string, length)
string

String to be left-justified.

length

Length of field.

Example

<!--- 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>