LCase Function

將字串中所有的大寫字母轉換成小寫字母。

另請參閱:UCase 函式

Syntax:

LCase(Text As String)

Return value:

字串型

Parameters:

Text:要轉換的任意字串型表示式。

錯誤代碼:

5 無效的程序呼叫

Example:


Sub ExampleLUCase
Dim sVar As String
    sVar = "Las Vegas"
    Print LCase(sVar) REM 傳回「Las Vegas」
    Print UCase(sVar) REM 傳回「LAS VEGAS」
End Sub

Please support us!