ToLower

将字符串转换为小写。

例如:

Dim s1 As String = "ABC"
Dim
s2 As String

s2 = s1.ToLower()

执行后,s2的值将等于“abc”。


本页地址:http://www.foxtable.com/webhelp/topics/0239.htm