我如何使用compareToIgnoreCase方法?

时间:2013-04-01 18:50:32

标签: java string methods

如何使用'String'类的compareToIgnoreCase方法查看字符串是否小于或大于另一个字符串?我无法使用“>”和“<”。

1 个答案:

答案 0 :(得分:5)

此例程返回-1,0或1作为值,因此您可以执行以下操作:

String first;
String second;
... assign first and second

if( first.compareToIgnoreCase(second) < 0) {
    // second is less than first...
} else if first.compareToIgnoreCase(second) == 0) {
    // second is same as first...
} else if first.compareToIgnoreCase(second) > 0) {
    // second is greater than first...
}