从字符串中删除案例敏感性

时间:2016-03-27 05:14:17

标签: android

如果字符串等于某事,我会执行特殊操作。但是,如果字符串具有大写字符,我想执行相同的操作。但我不想在每个案例中写下这么多的陈述 -

解密

解密

DECRYPT

 } else if (message.equals("decrypt")) {
                        removeencryption(context);

有没有办法消除区分大小写?

我已经尝试了

} else if (message.toLowerCase().equals("whistle")) {
                    whistle(context);

但它不起作用

1 个答案:

答案 0 :(得分:0)

使用equalsIgnoreCase类的String方法:

else if (message.equalsIgnoreCase("decrypt")) {
                        removeencryption(context);
}