java比较两个字符串大小写_如何在Java中不区分大小写的情况下比较两个字符串...

该equalsIgnoreCase()方法将该字符串与指定对象进行比较。当且仅当参数不为null并且是一个String对象,表示与此对象相同的字符序列时,结果为true。

示例

public class Sample {

public static void main(String args[]) {

String Str1 = new String("This is really not immutable!!");

String Str2 = Str1;

String Str3 = new String("THIS IS REALLY NOT IMMUTABLE!!");

boolean retVal;

retVal = Str1.equalsIgnoreCase(Str2);

System.out.println("Returned Value = " + retVal );

retVal = Str1.equalsIgnoreCase( Str3 );

System.out.println("Returned Value = " + retVal );

}

}

输出结果Returned Value = true

Returned Value = true

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值