I execute the following code:
public static void test() {
Pattern p = Pattern.compile("BIP[0-9]{4}E");
Matcher m = p.matcher("BIP1111EgjgjgjhgjhgjgjgjgjhgjBIP1234EfghfhfghfghfghBIP5555E");
System.out.println(m.matches());
while(m.find()) {
System.out.println(m.group());
}
}
What i cannot explain is when the code is executed with System.out.println(m.matches()); the matches printed are: BIP1234E and BIP5555E. but when System.out.println(m.matches()); is removed from code the matche BIP1111E is also printed.
Can someone please explain how that's possible ? Thnx a lot for your help.
matchesis called before. – khachik Nov 20 '10 at 16:30