当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript LCase 函数
The LCase function converts a specified string to lowercase.
LCase 函数可返回字符串的小写形式。
Tip: Also look at the UCase function.
提示:还可以参考下UCase函数
LCase(string) |
参数 | 描述 |
---|---|
string | Required. The string to be converted to lowercase 必选项。string 参数是任意有效的字符串表达式。 |
dim txt 输出: this is a beautiful day! |
dim txt 输出: this is a beautiful day! |