LCase
The LCase function converts all of the characters in the
text string argument to lower-case. Only the characters from
A to Z will be affected by this function. All characters that are
not letters will be unaffected.
Please note that the argument is not changed. Instead, a copy of
the string is made and then the changes are made which are returned
to the caller as a new string.
Response.Write "LCase(""HOORAY!"") = " & LCase("HOORAY!") & "<BR>" Response.Write "LCase(""Yippee!"") = " & LCase("Yippee!") & "<BR>"
The counterpart for this function is the UCase function which
will force all of the lower-case letters in a string to uppercase.
|
 |

|