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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. /*
  2. * 将一个字符串A,其中包含了特定格式的字符串B,记录B在A中的记录
  3. *
  4. * */
  5. public class StringDome {
  6.         public int selectzichuang(String str,String str2){
  7.                 int index=0;
  8.                 int c=0;
  9.                 while((index=str.indexOf(str2,index))!=-1){//循环读取这个字符串,假如读到字符串,
  10.                                                                                                                                 //就将该计数器C加一,最后返回的C
  11.                         c++;
  12.                         index+=str2.length();  //当字符串B被读到时,就就将字符串的index自身加上B的长度,形成新的索引
  13.                 }
  14.                 return c;
  15.         }
  16.         /*
  17.          * 这样做的好处就是将j保留了原有数据不被破坏
  18.          * */       
  19.         public static void main(String[] args) {
  20.                 String str="asdfsssfsssfadfaerioffasssfjoirpflshosssflitofjsjoiewjsss";
  21.                 String str2="sss";
  22.                 StringDome std=new StringDome();
  23.                 System.out.println(std.selectzichuang(str, str2));
  24.                
  25.         }
  26. }
复制代码


2 个回复

倒序浏览
回复 使用道具 举报
学习了。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马