VBScript LCase 函數(shù)

2022-08-19 10:02 更新

VBScript LCase 函數(shù)返回已被轉(zhuǎn)換為小寫字母的字符串。


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

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

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

語法

LCase(string)

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

實(shí)例

實(shí)例 1

<script type="text/vbscript">
txt="THIS IS A BEAUTIFUL DAY!"
document.write(LCase(txt))
</script>

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

this is a beautiful day!

嘗試一下 ?

實(shí)例 2

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

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

this is a beautiful day!

嘗試一下 ?

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

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號