VBScript Len 函数


❮ 完整的 VBScript 参考

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

语法

Len(string)

参数 描述
string 字符串表达式。

实例

实例 1

<%

txt="This is a beautiful day!"
response.write(Len(txt))

%>

上述代码的输出为:

24
显示示例 »

实例 2

也可以将字符串直接放入Len函数中:

<%

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

%>

上述代码的输出为:

24
显示示例 »

❮ 完整的 VBScript 参考