java计算字符串中子串出现的次数 详细解析
2个回答
展开全部
这个用正则表达式就可以了
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次
展开全部
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 希望帮
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询