/*
* 有一个字符串"woaiheimahahaheimaaiwo"求该字符串中"heima"出现的次数
* */
String s="woaiheimahahaheimaaiwo";
String refex="heima";
Pattern p=Pattern.compile(refex); //模式下开始编译regex语句
Matcher m=p.matcher(s); //编译的语句开始匹配在字符串中
int i=0; //统计匹配次数的变量
while(m.find()){
i++; //匹配后一共有几个
}
System.out.println(i); //输出匹配次数 |
|