返回字符串" code"的次数。出现在给定字符串中的任何位置,
除了我们接受任何来信,因此"应对"和" cooe"计数。
我可以输入一个值,这意味着任何字母,还是我必须为字母表中的每个字母设一个案例?
答案 0 :(得分:3)
使用正则表达式:
string.matches("co[a-z]e")
计算匹配数:
int count = 0;
Matcher m = Pattern.compile("co[a-z]e").matcher(string);
while(m.find()) {
count++;
}