compareTo()
描述
比较两个字串,看看两者之中谁在前面、后面或相同。过程中会取两字串的每个字元做 ASCII 值比较,举例来说,’a’ 会在 b 前面和 A 后面。另外,数字总是在字母前面。
语法
string.compareTo(string2)
参数
string
: String 物件 (字串)
string2
: 另一个 String 物件 (字串)
回传
负值:假如 string
是在 string2
之前
0:假如 string
等于 string2
正值:假如 string
是在 string2
之后
范例
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.