Java获取指定字符串出现次数的方法

时间:2022-02-27 00:16:44

Java中 获取指定字符串在另一个字符串中出现的次数,供大家参考,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
 * @param args
 */
public static void main(String[] args) {
 
  String srcText = "Hello World";
  String findText = "e";
  int num = appearNumber(srcText, findText);
  System.out.println(num);
}
 
/**
 * 获取指定字符串出现的次数
 *
 * @param srcText 源字符串
 * @param findText 要查找的字符串
 * @return
 */
public static int appearNumber(String srcText, String findText) {
  int count = 0;
  Pattern p = Pattern.compile(findText);
  Matcher m = p.matcher(srcText);
  while (m.find()) {
    count++;
  }
  return count;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/libing06081227/article/details/51991990