VBScript LTrim Function
LTrim
The Ltrim Function removes the blank spaces that are there on the left side of the string.
Syntax
LTrim(String)
Example
<!DOCTYPE html>
<html>
<body>
<script language = "vbscript" type = "text/vbscript">
var = "Microsoft VBScript"
document.write("After Ltrim : " & LTrim(var) & "<br />")
</script>
</body>
</html>
When you save it as .html and execute it in Internet Explorer, then the above script will produce the following result −
After Ltrim : Microsoft VBScript
vbscript_strings.htm
Advertisements