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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there a way to convert a string to it's LowerCase alternative?

Status
Not open for further replies.

JohnnyBGoode

Programmer
May 1, 2002
76
CA
If I have a string:
str = 'ERROR';

How can I convert this string to 'error'?
 
Sure... this is a method of a string...

Code:
str = str.toLowerCase();

Jeff
 
Ya, I couldn't rememebr what it was. I was trying something different. Thanx.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top