<完整的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參考