我是靠谱客的博主 危机鞋子,最近开发中收集的这篇文章主要介绍java小练习--获取abc字符串在整个字符串中出现的次数,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在下面一行字符串中获取abc字符串在整个字符串中出现的次数。
"wabcerabctyabcuiabcabcqq"

思路:使用indexOf和substring();

源码如下:

public static void main(String[] args)
{
String s1 = "abcwabcerabctyabcuiabcabc";
String s2 = "abc";
int count = getCount(s1,s2);
int count2 = getCount2(s1,s2);
System.out.println("count = "+count);
System.out.println("count2 = "+count2);
}
/*第一种方法
获取abc字符串在整个字符串中出现的次数。
"wabcerabctyabcuiabcabcqq"
*/
public static int getCount(String str,String sub)
{
int index = 0;
int count = 0;
while((index = str.indexOf(sub,index))!=-1)
{
index = index + sub.length();
count++;
}
return count;
}
/*第二种方法*/
public static int getCount2(String str,String sub)
{
int index = 0;
int count = 0;
while((index=str.indexOf(sub))!=-1)
{
str = str.substring(index+sub.length());
count++;
}
return count;
}
}


 

最后

以上就是危机鞋子为你收集整理的java小练习--获取abc字符串在整个字符串中出现的次数的全部内容,希望文章能够帮你解决java小练习--获取abc字符串在整个字符串中出现的次数所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部