当前位置: 首页 > 网络学院 > 客户端脚本教程 > VBScript > VBScript LCase 函数

VBScript
VBScript 介绍
如何使用 VBScript
VBScript 放置
VBScript 变量
VBScript 程序
VBScript 条件语句
VBScript 循环声明
VBScript 摘要
VBScript 实例
VBScript 函数
VBScript 关键字

VBScript LCase 函数


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-04   浏览: 170 ::
收藏到网摘: n/a

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 参数是任意有效的字符串表达式。

实例 1

dim txt
txt="THIS IS A BEAUTIFUL DAY!"
document.write(LCase(txt))
输出:
this is a beautiful day!

实例 2

dim txt
txt="This Is a Beautiful Day!"

document.write(LCase(txt))
输出:
this is a beautiful day!

评论 (0) All

登陆 | 还没注册?