VBScript 函数参考手册
Len 函数可返回字符串中字符的数目。
Len(string|varname)
dim txt txt="This is a beautiful day!" document.write(Len(txt))
输出:
24
document.write(Len("This is a beautiful day!"))
Search: