1.判断字符串内容是否相等,区分大小写
System.out.println(s.equals("helloworld"));
2.判断字符串内容是否相等,不区分大小写
System.out.println(s.equalsIgnoreCase("helloworld"));
3.判断字符串是否包含给定的字符串,(大串中有小串)
System.out.println(s.contains("hello"));
4.判断字符串对象是否是以给定的字符串开始
System.out.println(s.startsWith("Hell"));
5.判断字符串对象是否是以给定的字符串结尾:
System.out.println(s.endsWith("ld"));
6.判断字符串是否为空
System.out.println(s.isEmpty()); |
|