VBScript LTrim 函数

定义和用法

RTrim 函数可删除字符串右侧的空格。

语法

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

实例

例子 1

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

输出:

  1. " This is a beautiful day!"