Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Coverting a String into LowerCase.

Status
Not open for further replies.

Johno2090

Programmer
May 3, 2002
31
0
0
GB
I need to know a way to convert a string into Lower Case for instance if i have CHRIS in a string i want to change it to: chris.

Thanx in Advance
 
Dim myString
myString = "CHRIS"
myString = lcase(myString)
Response.Write myString 'outputs chris

there is also a uCase function that changes all characters in the provided string to upper case.
Hope that helps,
-Tarwn --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
For my next trick I will pull a hat out of a rabbit (if you think thats bad you should see how the pigeon feels...) :p
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top