java计算字符串中子串出现的次数 详细解析

 我来答
GTA小鸡
高粉答主

2017-03-12 · 醉心答题,欢迎关注
知道大有可为答主
回答量:2.6万
采纳率:78%
帮助的人:1.3亿
展开全部

这个用正则表达式就可以了

import java.util.regex.*;
public class Test{
    public static void main(String[] args)
    {
        String str = "abaababcb";
        String substr = "ab";
        Patter p = Pattern.compile(substr);
        Matcher m = p.matcher(str);
        int found = 0;
        while(m.find()) found++;
        System.out.println("字符串"+str+"中子串"+substr+"共出现了"+found+"次");
    }
}
//输出结果:字符串abaababcb中子串ab共出现了3次
帕狸硕G
2017-03-12 · TA获得超过172个赞
知道答主
回答量:335
采纳率:0%
帮助的人:73万
展开全部
public class HelpOne { public static void main(String[] args) { String str = "abcdefabhjlecababcab"; String str一 = "ab"; int count = 0; int start = 0; while (str.indexOf(str一, start) >= 0 && start < str.length()) { count++; start = str.indexOf(str一, start) + str一.length(); } System.out.println(str一 + "" + str + "现数" + count); } } 运行结: ababcdefabhjlecababcab现数5 希望帮
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式