VBScript Len 函数

定义和用法

Len 函数可返回字符串中字符的数目。

语法

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

实例

例子 1

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

输出:

  1. 24

例子 2

  1. document.write(Len("This is a beautiful day!"))

输出:

  1. 24