class StringTest
{
public static int getSubCount(String str,String key)
{
int count = 0;
int index = 0;
while((index=str.indexOf(key))!=-1)
{
sop("str="+str);
str = str.substring(index+key.length());
count++;
}
return count;
}
public static void main(String[] args)
{
String str = "abzzcdzzefzghzzijkzz";
sop("count="+getSubCount(str,"zz"));
}
public static void sop(String str)
{
System.out.println(str);
}
}
上面是毕老师视频里的一个例子,红色部分不是很理解,请大家帮忙解释下,详细点
|