黑马程序员技术交流社区

标题: 获取一个字符串在另一个字符串中出现的次数 [打印本页]

作者: 真实姓名被注册    时间: 2015-8-6 13:57
标题: 获取一个字符串在另一个字符串中出现的次数
class MyCount{
        public static int mycount(String s1, String s2){//统计s2在s1中出现的次数
                int count=0,index;
                while((index=s1.indexOf(s2))!=-1){
                        count++;
                        index+=s2.length();
                        if(index>s1.length()-1) break;//如果下一次搜索的起始位置超出当前s1长度,                       

                        //则跳出循环
                        s1=s1.substring(index);//从下一个位置起继续搜索
                }
                return count;
                       
        }
        public static void main(String[] args){
                String s1="abcdebcfbcbc",s2="bc";
                System.out.println("s1="+s1);
                System.out.println("s2="+s2);
                System.out.println("s2在s1中出现"+mycount(s1,s2)+"次");
        }
}
作者: henghenghalala    时间: 2015-8-6 14:10
嗯 这个代码有意思,注释的很好{:2_30:}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2