String.toUpperCase()
Description
Renvoie une chaîne en majuscules de la chaîne d'un objet String. (Ne modifie pas l'objet String qui est utilisé.)
Syntaxe
string.toUpperCase()
Paramètres
- string: une variable de type String()
Valeurs Renvoyées
- Renvoie une chaîne en majuscules 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.toUpperCase();
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.