Whatever message this page gives is out now! Go check it out!
LTrim(string)Parameter | Description |
string | A string or a variable that contains a string. |
<cfscript>
myString=LTrim(" Mary had a little lamb"); // The input string has leading spaces
WriteOutput(myString);
</cfscript>