ASP LCase Function
The ASP LCase function is used to convert a string to lower case. The string
argument of the LCase function can be any valid string.
All upper case letters in the string passed as an argument to LCase are
converted to lower case, while all lower case letters and special characters
remain the same.
Consider the following ASP code:
<%
sMyString = “ASP-Hosting.ca”
sLowerCaseString = LCase(sMyString)
Response.Write(sLowerCaseString)
%>
The code above will print the following in your browser:
asp-hosting.ca
|