VBScript UCase 函數(shù)

2022-08-19 09:59 更新

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


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

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

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

語法

UCase(string)

參數(shù) 描述
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!

嘗試一下 ?

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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號