![]() |
|
|
LCase and UCase VBScript functionsYou can use LCase() and UCase() to pass in the string variable and thus convert the string into either uppercase or lowercase. Example 1: <%
myName = "MICHAEL" Response.Write LCase(myName) %> Result displayed on the screen would be: Example 2: <%
myNAME = "MICHAEL" Response.Write UCase(myName) %> Result displayed on the screen would be: Other useful VBScript functions for Parsing String
Site developed by Michael Wall - Web Design Belfast N.Ireland. |
|