VBScript LCase 函式
❮ VBScript 參考大全
LCase 函式將指定字串轉換為小寫。
提示: 還可以檢視 UCase 函式。
語法
LCase(string)
引數 | 描述 |
---|---|
string | 必需。要轉換為小寫的字串 |
示例
示例 1
<%
txt="THIS IS A BEAUTIFUL DAY!"
response.write(LCase(txt))
%>
上面程式碼的輸出將是
this is a beautiful day!
顯示示例 »
示例 2
<%
txt="This is a BEAUTIFUL day!"
response.write(LCase(txt))
%>
上面程式碼的輸出將是
this is a beautiful day!
顯示示例 »
❮ VBScript 參考大全