Navigation bar
  Start Previous page
 135 of 283 
Next page End 130 131 132 133 134 135 136 137 138 139 140  

126
LCase
Type
Function returning String
Invocation
LCase(str) 
Parameter
Method
Type
Description
str
ByVal
String
The string to be changed to lower case.
Discussion
This function returns a new string containing the same characters as the passed string except that all
upper case characters will be replaced with lower case characters.
Example
Dim s as String, s1 as String
s = "Hello, world!"
s2 = LCase(s)
' the result will be "hello, world!"
See Also
Previous page Top Next page