字符串判断:1,字符串石佛包含某个字符串。boolean contains(str);
特殊之处:indexOf(String str),如果返回的值是-1,那么就表示不包含这个字符串
也可以实现判断。
2,字符串是否有内容。boolean isEmpty() 字符串为空时返回true
3,字符串是否以指定内容开头 boolean startsWith(String str)
boolean startsWith(String str,int fromindex);
4,字符串是否以指定内容结尾 boolean endsWith(String str)
5,判断字符串是否相等,实际上是重写了Object中的equals()方法,
boolean equals(Object anObject)
6,判断字符串是否相等并忽略大小写
boolean equalsIngoreCase(String str)
String类中的常用方法_判断
时间: 2024-11-04 00:16:10