Reference for Wiring version 1.0 Build 0100+ If you have a previous version, use the reference included with your software. If see any errors or have any comments, let us know.
Class | String |
---|---|
Name | toLowerCase() |
Examples | void setup() { Serial.begin(9600); String str1 = String("1547"); int num = str1.toInt() + 3; Serial.println(str1, DEC); // prints 1550 } void loop() { } |
Description | Converts all of the characters in the string to lowercase. For example, "ABC" will convert to "abc". |
Syntax | toLowerCase()
|
Usage | Application |