Reference for Wiring version 0024+. 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");
String 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 | Application |

