VBS教程:函数-LCase 函数
更新时间:2006年11月16日 00:00:00 作者:
LCase 函数
返回字符串的小写形式。
LCase(string)
string 参数是任意有效的字符串表达式。如果 string 参数中包含 Null,则返回 Null。
说明
仅大写字母转换成小写字母;所有小写字母和非字母字符保持不变。
下面的示例利用 LCase 函数把大写字母转换为小写字母:
Dim MyStringDim LCaseStringMyString = "VBSCript"LCaseString = LCase(MyString) ' LCaseString
包含"vbscript"
。
相关文章
VBS 强制关闭Symantec Endpoint Protection的代码
很多企业电脑系统是Windows Xp,使用Windows server 2003 来控制,其中客户端得杀毒软件有不少是使用 Symantec Endpoint Protection2013-01-01用vbs检测Internet Explorer 中是否启用了 ActiveX
用vbs检测Internet Explorer 中是否启用了 ActiveX...2007-03-03
最新评论