VBScript Left 函数

与星星私奔

VBScript Left 函数



Left 函数从字符串的左侧返回指定数量的字符。

提示:请使用 Len 函数来确定字符串中的字符数量。

提示:请参阅 Right 函数。

语法


Left(string,length)


参数 描述
string 必需。从其中返回字符的字符串。
length 必需。规定需返回多少字符。如果设置为 0,则返回空字符串("")。如果设置为大于或等于字符串的长度,则返回整个字符串。

实例

实例 1

<script type="text/vbscript">

txt="This is a beautiful day!"
document.write(Left(txt,15))

</script>

以上实例输出结果:

This is a beaut

实例 2

返回整个字符串:

<script type="text/vbscript">

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

</script>

以上实例输出结果:

This is a beautiful day!

版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com

目录[+]

取消
微信二维码
微信二维码
支付宝二维码