Reference Language | Libraries | Comparison | Changes
Tests if the string on the left is greater than the string on the right. This operator evaluate strings in alphabetical order, on the first character where the two differ. So, for example "b" >= "a"
and "2" >= "1"
, but "999" >= "1000"
because 9 comes after 1.
Caution: String comparison operators can be confusing when you're comparing numeric strings, because the numbers are treated as strings and not as numbers. If you need to compare numbers numerically, compare them as ints, floats, or longs, and not as Strings.
string1 >= string2
string1, string2: variables of type String
true: if string1 is greater than or equal to string2
false: otherwise
Corrections, suggestions, and new documentation should be posted to the Forum.
The text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.