UCase Function

Converts lowercase characters in a string to uppercase.

See also: LCase Function

Syntax:

Llogarit gjatësinë e një vargu tekstual.

Return value:

Varg

Parametrat animues

Text: Any string expression that you want to convert.

Error codes:

5 Invalid procedure call

Shembull

Sub ExampleLUCase

Dim sVar As String

    sVar = "Las Vegas"

    Print LCase(sVar) ' returns "las vegas"

    Print UCase(sVar) ' returns "LAS VEGAS"

End Sub