String
 
  Reference for Wiring 1.0 (ALPHA) 0022+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Class   String
   
Name  

toLowerCase()

   
Examples  
String str1 = String("CCCP"); 
str2 = str1.toLowerCase(); 
 
Serial.println(str2);  // prints cccp 

Description   Converts all of the characters in the string to lowercase. For example, "ABC" will convert to "abc".
   
Syntax  
toLowerCase()
   
Returns   none
   
Usage   Web & Application