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