String.compareTo()
Description
Compare deux objets String, testant si l'un vient avant ou après l'autre, ou si ils sont égaux. Les chaînes de caractères sont comparées caractère par caractère, utilisant les valeurs ASCII des caractères. Ceci signifie par exemple, que 'a' vient avant 'b' mais après 'A'. Les nombres viennent avant les lettres.
Syntaxe
string.compareTo(string2)
Valeurs Renvoyées
- Un nombre négatif : si string vient avant string2
- 0 : si string et string2 sont égaux
- Un nombre positif : si string vient après string2
Exemple
void setup() {
Serial.begin(9600);
String myString = "Arduino";
String myString2 = "ArduinoGetStarted.com";
int result = myString.compareTo(myString2);
Serial.println(result);
}
void loop() {
}
The result on Serial Monitor:
COM6
-71
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.