<完整的VBScript参考
Left函数从字符串的左侧返回指定的字符数。
Tip:请使用Len函数来查找字符串中的字符数。
Tip:也期待在正确的功能。
句法
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参考