文字大小
<< 向前 下一页 >>
ID : 758
返回将大写字母转换为小写字母的值。
LCase(string)
返回字符串型数据。
将自变量string中所指定字符串的所有大写字母转换为小写字母。
仅转换大写字母。
UCase
-
'!TITLE "LCase的样本" Sub Sample_LCase Dim aaa As String aaa = "Abcc_Cdef" PrintDbg LCase(aaa) ' 输出"abcc_cdef" End Sub