java中统计一个字符串串在另一个字符串中出现的次数



package com.test.string;

public class StringUtils {

 //1.统计一个字符串在另一个字符串中出现的次数
 public static int stringCount(String str,String key){
  int index=0;
  int count=0;
  while((index=str.indexOf(key))!=-1){
   str=str.substring(index+key.length());
   count++;
  }
  
  return count;
 }
 
 public static void main(String[] args) {
  String str="adfdfdgdfdsfsdwerer";
  String key="d";
  int count=stringCount(str,key);
  System.out.println(count);
 }
}

你可能感兴趣的:(java中统计一个字符串串在另一个字符串中出现的次数)