LTrim() - remove leading spaces from a string
LTrim.cfm
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>LTrim function example: how to remove leading spaces from a string</title>
</head>
<body>
<h2 style="color:HotPink">LTrim Function Example</h2>
<cfset TestString=" Test string for LTrim function">
<cfoutput>
<b>
TestString: [#TestString#]
<br />
TestString(after remove leading spaces): [#LTrim(TestString)#]
</b>
</cfoutput>
</body>
</html>
- HTMLCodeFormat() - replace special character in a string with their HTML escaped equivalents
- HTMLEditFormat() - replace special character in a string with their HTML escaped equivalents
- LCase() - convert a string to lowercase
- Left() - get the leftmost count characters in a string
- Len() - get the length of a string
- Mid() - extracts a substring from a string
- RemoveChars() - remove characters from a string
- RepeatString()
- Replace() - replace a substring in a string (case sensitive)