String.toLowerCase()
Description
Renvoie une chaîne en minuscules de la chaîne d'un objet String. (Ne modifie pas l'objet String qui est utilisé.)
Syntaxe
string.toLowerCase()
Paramètres
- string: une variable de type String()
Valeurs Renvoyées
- Renvoie une chaîne en minuscules de la chaîne de l'objet string
Exemple
String myString;
void setup() {
Serial.begin(9600);
myString = "ARDUINOGETSTARTED.COM";
Serial.println(myString); // string before
myString.toLowerCase();
Serial.println(myString); // string after
}
void loop() {
}
The result on Serial Monitor:
COM6
ARDUINOGETSTARTED.COM
arduinogetstarted.com
Autoscroll
Clear output
9600 baud
Newline
※ ARDUINO BUY RECOMMENDATION
Arduino UNO R3 | |
Arduino Starter Kit |
Disclosure: Some links in this section are Amazon affiliate links. If you make a purchase through these links, we may earn a commission at no extra cost to you.
Additionally, some links direct to products from our own brand, DIYables.
Additionally, some links direct to products from our own brand, DIYables.