在一个原始的字符串中要找有没有子字符串,我们可以用indexOf()方法实现,但是它只是显示第一个出现的索引号。lastIndexOf(),返回指定字符在此字符串中最后一次出现处的索引。如何查找有多少个呢?
public class TestStringFindString {
public static void main(String[] args) {
String str = "ajavabbbjavajjavajave";
String s = "java";
// String str1 = "aaaa";
// String s1 = "aa";
int count = 0;
//一共有str的长度的循环次数
for(int i=0; i<str.length() ; ){
int c = -1;
c = str.indexOf(s);
//如果有S这样的子串。则C的值不是-1.
if(c != -1){
//这里的c+1 而不是 c+ s.length();这是因为。如果str的字符串是“aaaa”, s = “aa”,则结果是2个。但是实际上是3个子字符串
//将剩下的字符冲洗取出放到str中
str = str.substring(c + 1);
count ++;
System.out.println(str);
}
else {
//i++;
System.out.println("没有");
break;
}
}
System.out.println(count);
}
}