compareTo()

描述

比較兩個字串,看看兩者之中誰在前面、後面或相同。過程中會取兩字串的每個字元做 ASCII 值比較,舉例來說,’a’ 會在 ‘b’ 前面和 ‘A’ 後面。另外,數字總是在字母前面。

語法


string.compareTo(string2)

參數

string: String 物件 (字串)
string2: 另一個 String 物件 (字串)

回傳

負值:假如 string 是在 string2 之前
0:假如 string 等於 string2
正值:假如 string 是在 string2 之後

範例

StringComparisonOperators

See also

String
equals()
equalsIgnoreCase()
== (comparison)


語法參考主頁面

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.