VBScript UCase 函数
❮ 完整的 VBScript 参考
UCase 函数可把指定的字符串转换为大写。
提示: 请参阅 LCase 函数。
语法
UCase(string)
参数 | 描述 |
---|---|
string | 必需的。需被转换为大写的字符串。 |
实例
实例 1
<%
txt="This is a beautiful day!"
response.write(UCase(txt))
%>
上述代码的输出为:
THIS IS A BEAUTIFUL DAY!
显示示例 »
实例 2
<%
txt="This is a BEAUTIFUL day!"
response.write(UCase(txt))
%>
上述代码的输出为:
THIS IS A BEAUTIFUL DAY!
显示示例 »
❮ 完整的 VBScript 参考