Java 中计算字符串中子串出现的次数
统计一个字符串中子串出现的次数有以下两种:
1.使用正则表达式处理;
Pattern p = Pattern.compile("abc",Pattern.CASE_INSENSITIVE);
Matcher m = p.matcher(str);
int count = 0;
while(m.find()){
count ++;
}2.使用普通方法处理,String的split的方法(推荐)
String parent = "select * from t where t.id is null";
String child = "e";
String[] arr = (","+parent.toLowerCase()+",").split(child);
System.out.println(arr.length - 1);对于子字符串的大小写的匹配,自己根据情况进行修改了。
参考文档:http://zhidao.baidu.com/question/111545161.html
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇:没有了
- 下一篇:没有了
