判断String字符串中包含某个指定/特殊字符的个数
2021-07-15 本文已影响0人
点映文艺
/**
* 判断str中包含key的个数
* @param str1
* @param str2
* @return counter
*/
static int counter = 0;
public static int countKey(String str, String key) {
if (str.indexOf(key) == -1) {
return 0;
} else if (str.indexOf(key) != -1) {
counter++;
countKey(str.substring(str.indexOf(key) +
key.length()), key);
return counter;
}
return 0;
}