UCase Function

स्ट्रिंग के लोअरकेस अक्षरों को अपरकेस में बदलता है.

See also: LCase Function

Syntax:

Dim stext As String

Return value:

String

Parameters:

Text: Any string expression that you want to convert.

Error codes:

5 Invalid procedure call

Example:


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

Please support us!