1.10 字符串比较 内容忽略大小写方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1.10 字符串比较 内容忽略大小写方法相关的知识,希望对你有一定的参考价值。

package Demo;

public class Demo4 {
 public static void main(String[] args) {
  String str = "helloworld";
  System.out.println(str.equals("Helloworld")); //false
  System.out.println(str.equalsIgnoreCase("Helloworld")); //true
 }
}

以上是关于1.10 字符串比较 内容忽略大小写方法的主要内容,如果未能解决你的问题,请参考以下文章

字符串的常用方法

如何让字符串数组的Contains忽略大小写

AC日记——忽略大小写的字符串比较 openjudge 1.7 16

如何让字符串数组的Contains忽略大小写

比较 char 忽略大小写的正确方法是啥?

比较 char 忽略大小写的正确方法是啥?