日期:2014-05-20 浏览次数:20785 次
public static void main(String [] args)
{
String i = "Hello world Hello";
String test = "Hello";
int count = 0;
int index = 0;
do
{
count ++;
index = i.indexOf(test); //在i中搜索Hello字符
index += test.length(); // 获得下一个开始索引
index = i.indexOf(test, index); //在指定索引处继续往后搜索
}while(index!=-1); //index不等于-1时继续执行上述代码查找字符。
System.out.println(count);
}
public static void main(String [] args){
String i = "Hello world Hello Hello Hello";
String test = "Hello";
int count = -1;
int index = 0;
do {
count ++;
index = i.indexOf(test);
i = i.substring(index+1);
}while(index!=-1); //index不等于-1时继续执行上述代码查找字符。
System.out.println(count);
}