现在的位置: 网页制作教程网站制作教程 >正文
asp语言基础教程

VBScript中LCase() 函数使用方法

发表于2017/1/10 网站制作教程 0条评论 ⁄ 热度 2,144℃

VBScript中LCase 函数用于将 string 转换为小写形式。

response.write LCase("Webym")	'结果为:webym
response.write LCase("WEBYM")	'结果为:webym

可以看到,上面的字符串经过LCase函数处理后都变成了小写。

  • 暂无评论