VBScript UCase 函數(shù)

2022-08-19 09:59 更新

VBScript UCase 函數(shù)返回的字符串已經(jīng)被轉(zhuǎn)換為大寫字母。 


VBScript 參考手冊完整的 VBScript 參考手冊

UCase 函數(shù)把指定的字符串轉(zhuǎn)換為大寫。

提示:請參閱 LCase 函數(shù)。

語法

UCase(string)

參數(shù) 描述
string 必需。需被轉(zhuǎn)換為大寫的字符串。

實(shí)例

實(shí)例 1

<script type="text/vbscript">
txt="This is a beautiful day!"
document.write(UCase(txt))
</script>

以上實(shí)例輸出結(jié)果:

THIS IS A BEAUTIFUL DAY!

嘗試一下 ?

實(shí)例 2

<script type="text/vbscript">
txt="This is a BEAUTIFUL day!"
document.write(UCase(txt))
</script>

以上實(shí)例輸出結(jié)果:

THIS IS A BEAUTIFUL DAY!

嘗試一下 ?

VBScript 參考手冊完整的 VBScript 參考手冊
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號