import java.util.regex.Pattern;
import java.util.regex.Matcher;

public class MatcherDemo {

    private static final String REGEX = "\\bdog\\b";
    private static final String INPUT = "dog dog dog doggie dogg";

    public static void main(String[] args) {
       Pattern p = Pattern.compile(REGEX);
       Matcher m = p.matcher(INPUT);    // 获得一个匹配器对象
       int count = 0;
       while(m.find()) {
           count++;
           System.out.println("Match number "+count);
           System.out.println("start(): "+m.start());
           System.out.println("end(): "+m.end());
       }
    }
}
最近下载更多
smiledog  LV2 2021年1月29日
pyg123456  LV1 2020年12月29日
luohaipeng  LV23 2019年11月20日
helenjiang  LV1 2019年8月21日
低调人  LV38 2019年8月4日
yyyyyyyyyyyyyyyyyyy  LV16 2019年7月3日
silenceS  LV4 2018年10月5日
tztony  LV1 2018年7月11日
free2322222223  LV1 2018年7月3日
zhuozhi  LV2 2018年4月29日
最近浏览更多
NeneAnegsaki  LV2 2022年4月24日
yiyiyi55555  LV1 2021年10月22日
金玉博  LV1 2021年9月6日
smiledog  LV2 2021年1月29日
yuzhiyuan1977  LV2 2021年1月5日
pyg123456  LV1 2020年12月29日
LiXin1994  LV1 2020年12月9日
gan857569302  LV9 2020年6月23日
lichengai  LV7 2020年5月1日
luohaipeng  LV23 2019年11月20日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友