VBScript LTrim 函数

定义和用法

LTrim 函数可删除字符串左侧的空格。

语法

  1. Len(string|varname)
参数 描述
string 字符串表达式。

实例

例子 1

  1. dim txt
  2. txt=" This is a beautiful day! "
  3. document.write(LTrim(txt))

输出:

  1. "This is a beautiful day! "