/**
* 判断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;
}
网友评论