Java 中计算字符串中子串出现的次数

来源:互联网 发布:大数据预测美国大选 编辑:程序博客网 时间:2024/05/17 22:57

统计一个字符串中子串出现的次数有以下两种:

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

0 0