UCase

阅读:22      收藏:0      [点我收藏+]

VBScript UCase 函数


UCase 函数把指定的字符串转换为大写。

提示:请参阅 LCase 函数。

语法

UCase(string)

参数 描述
string 必需。需被转换为大写的字符串。

实例

实例 1

<script type="text/vbscript">

txt="This is a beautiful day!"
document.write(UCase(txt))

</script>

以上实例输出结果:

THIS IS A BEAUTIFUL DAY!


实例 2

<script type="text/vbscript">

txt="This is a BEAUTIFUL day!"
document.write(UCase(txt))

</script>

以上实例输出结果:

THIS IS A BEAUTIFUL DAY!

关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!