VBScript Left 函数
❮ 完整的 VBScript 参考
Left 函数可从字符串的左侧返回指定数目的字符。
提示: 请使用 Len 函数来确定字符串中的字符数目。
提示: 请参阅 Right 函数。
语法
Left(string,length)
参数 | 描述 |
---|---|
string | 必需的。从其中返回字符的字符串。 |
length | 必需的。规定需返回多少字符。如果设置为 0,则返回空字符串("")。如果设置为大于或等于字符串的长度,则返回整个字符串。 |
实例
实例 1
<%
txt="This is a beautiful day!"
response.write(Left(txt,15))
%>
上述代码的输出为:
This is a beaut
显示示例 »
实例 2
返回整个字符串:
<%
txt="This is a beautiful day!"
x=Len(txt)
response.write(Left(txt,x))
%>
上述代码的输出为:
This is a beautiful day!
显示示例 »
❮ 完整的 VBScript 参考