Collabora Office 23.05 帮助
将字符串中的小写字符转换成大写字符。
请参阅: LCase 函数
UCase (Text As String)
String
「Text」:要转换的任意字符串表达式。
Sub ExampleLUCase
Dim sVar As String
sVar = "Las Vegas"
Print LCase(sVar) ' "las vegas"
Print UCase(sVar) ' "LAS VEGAS"
End Sub