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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. public static void main(String[] args) {
  2.                 String oldStr = "woainvshenhehenvshengengaiwo";
  3.                
  4.                 String newStr = oldStr.replace("nvshen", "");
  5.                
  6.                 System.out.println(newStr);
  7.                
  8.                 int begin = 0;
  9.                 int count = 0;
  10.                 while((begin = oldStr.indexOf("nvshen", begin)) != -1){
  11.                         count++;
  12.                         begin = begin + "nvshen".length();
  13.                 }
  14.                
  15.                 System.out.println(count);
  16.                
  17.                
  18.                 System.out.println((oldStr.length() - newStr.length())/"nvshen".length());
  19.         }

  20. }
复制代码


1 个回复

正序浏览
很有意思的代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马