A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. <div class="blockcode"><blockquote>Stirng max = "woaiheimajavaandroidios,javahelloworldjavaios";//定义长字符串
  2. String min = "java";//定义小字符串
  3. int count = 0;//定义统计变量<p style="line-height: 30px; text-indent: 2em;"></p><p style="line-height: 30px; text-indent: 2em;"></p><div align="left">
  4. </div>int index = max.indexOf(min);//定义索引,这里有疑问,老师讲的是直接给index赋值为0,为什么我这样赋值就不行了?
  5. while(index != -1) {<p style="line-height: 30px; text-indent: 2em;"></p><div align="right"><ol><li>
  6. </li></ol></div>count++;
  7. max = max.substring(index+min.length());//这行总是报错StringIndexOutOfBoundsException请大家帮忙分析一下
  8. }
  9. System.out.println(min+"共出现"+count+"次");
复制代码



5 个回复

倒序浏览
这是我做这道题的方法

  1. import java.util.regex.Matcher;
  2. import java.util.regex.Pattern;

  3. public class Test52 {
  4.         /*
  5.          * 需求:统计大串中小串出现的次数 这里的大串和小串可以自己根据情况给出
  6.          */
  7.         public static void main(String[] args) {
  8.         String s1 = "hahaheihahaxihahaxi";
  9.         String s2 = "haha";
  10.         int count = 0;                       
  11.         Pattern p = Pattern.compile(s2);
  12.         Matcher m = p.matcher(s1);
  13.         while(m.find()){
  14.                 count++;
  15.         }   
  16.         System.out.println(s2+"出现次数:"+count);
  17.     }
  18. }
复制代码
回复 使用道具 举报
黑夜中那颗星 发表于 2016-1-26 10:06
这是我做这道题的方法

没太看懂唉
回复 使用道具 举报
一开始定义是索引啊,有问题。
回复 使用道具 举报
毕老师的视频 和例程上面都有 讲解的很明白  楼主为什么不去看
回复 使用道具 举报
黑白涩 来自手机 中级黑马 2016-2-19 07:57:59
地板
黑夜中那颗星 发表于 2016-1-26 10:06
这是我做这道题的方法

p m对象的类是你写的?
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马