I was learning a Java regular expression tutorial online and got confused about one small program.
// String to be scanned to find the pattern.
String line = "This order was places for QT3000! OK?";
String pattern = "(.*)(\\d+)(.*)";
// Create a Pattern object
Pattern r = Pattern.compile(pattern);
// Now create matcher object.
Matcher m = r.matcher(line);
if (m.find( )) {
System.out.println("Found value: " + m.group(0) );
System.out.println("Found value: " + m.group(1) );
System.out.println("Found value: " + m.group(2) );
}
And the results printed out are:
Found value: This order was places for QT3000! OK?
Found value: This order was places for QT300
Found value: 0
I have no idea why the group(1) gets value the above value? Why it stops before the last zero of 'QT3000'?
Thank you very much!
! OK?.