Returns up to the leftmost count characters in a string.
String; up to the first count characters in the string parameter.
Left(string, count)
<cfscript>
myString=Left("That's one small step for man, one giant leap for mankind.",25);
WriteOutput(myString);
</cfscript>
Output
That's one small step for
Sign in to your account