I've text with many animals of certin kinds and some traps, and other text with no mean, e.g. "cat dog house 131 bird 1341 house trap cat cat cat dog trap house dog house trap".
I'm trying to build a regex that will find the nearest-precedence-animal to each traps, e.g. "cat dog house 131 bird 1341 house trap cat cat cat dog trap house dog house trap".
I've wrote this regex: (cat|dog|bird)(?!.*(cat|dog|bird).*).*trap
and here is my full Java-code:
Pattern p = Pattern.compile("(cat|dog|bird)(?!.*(cat|dog|bird).*).*trap");
Matcher m = p.matcher("cat dog house 131 bird 1341 house trap cat cat cat dog trap house dog house trap");
int start = 0;
while (m.find(start)) {
System.out.println(m.group(0));
System.out.println(m.group(1));
start = m.start + 1; //increment
}
Wierdly it finds only the last occuerence, and not the first, the second and the last. the output of the above code is:
dog house trap
dog
Why is that? I've tried to anchor it to the start with prepending ^.*? to the regex, but it didn't help.