String.compareTo()

出自YFRobotwiki
跳轉到: 導覽搜尋
String

compareTo()


描述

Compares two Strings, testing whether one comes before or after the other, or whether they're equal. The strings are compared character by character, using the ASCII values of the characters. That means, for example, that 'a' comes before 'b' but after 'A'. Numbers come before letters.


語法

string.compareTo(string2)


參數

string: a variable of type String string2: another variable of type String


返回值

a negative number: if string comes before string2 0: if string equals string2 a positive number: if string comes after string2


示例

- StringComparisonOperators



返回String

返回Arduino語法參考列表

更多建議和問題歡迎反饋至 YFRobot論壇