Len

阅读:35      收藏:0      [点我收藏+]

VBScript Len 函数


Len 函数返回字符串中的字符数量。

语法

Len(string)

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

实例

实例 1

<script type="text/vbscript">

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

</script>

以上实例输出结果:

24


实例 2

您还可以把字符串直接放入 Len 函数:

<script type="text/vbscript">

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

</script>

以上实例输出结果:

24

关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!