LCase Function

λ¬Έμžμ—΄μ˜ λͺ¨λ“  λŒ€λ¬Έμžλ₯Ό μ†Œλ¬Έμžλ‘œ λ³€ν™˜ν•©λ‹ˆλ‹€.

μ°Έκ³  ν•­λͺ©: UCase ν•¨μˆ˜

Syntax:

LCase (Text As String)

Return value:

String

Parameters:

Text: λ³€ν™˜ν•  μž„μ˜μ˜ λ¬Έμžμ—΄ μ‹μž…λ‹ˆλ‹€.

Error codes:

5 잘λͺ»λœ ν”„λ‘œμ‹œμ € ν˜ΈμΆœμž…λ‹ˆλ‹€.

Example:


Sub ExampleLUCase
Dim sVar As String
    sVar = "Las Vegas"
    Print LCase(sVar) ' "las vegas"
    Print UCase(sVar) ' "LAS VEGAS"
End Sub