查询一个字符串在另一个字符串中出现的次数
例:
String str1=“helloworld,java,python,hellokafka,world big table helloteacher”;
String str2=“hello”;
字符串str2在str1中出现3次
代码
package exercise.test8;public class Demo8 {public static void main(String[] args) {String str1="helloworld,java,python,hellokafka,world big table helloteacher";String str2="hello";
// int len1=str1.length();
// String s = str1.replaceAll(str2, "");
// int len2=s.length();
// int count=(len1-len2)/str2.length();
// System.out.println(count);
//
// System.out.println("-------------------------------");
// int count1=(str1.length()-str1.replaceAll(str2,"").length())/str2.length();
// System.out.println(count1);int len1=str1.length();int len2=str2.length();String s = str1.replaceAll(str2, "");int len_s=s.length();int count=(len1-len_s)/len2;System.out.println("字符串"+str2+"出现了"+count+"次");}
}