THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

VBScript LTrim Function


VBScript Reference Complete VBScript Reference

The LTrim function removes spaces on the left side of a string.

Tip: Also look at the RTrim and the Trim functions.

Syntax

LTrim(string)

Parameter Description
string Required. A string expression

Example

Example

<%

fname=" Jack "
response.write("Hello" & LTrim(fname) & "and welcome.")

%>

The output of the code above will be:

HelloJack and welcome.
Show Example »

VBScript Reference Complete VBScript Reference