<完整的VBScript参考
与LCASE函数将指定字符串为小写。
Tip:也看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参考