私はJava正規表現のチュートリアルをオンラインで学んでいて、1つの小さなプログラムについて混乱しました。
// 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) );
}
そして、印刷された結果は次のとおりです。
Found value: This order was places for QT3000! OK?
Found value: This order was places for QT300
Found value: 0
group(1)が上記の値を取得する理由がわかりませんか?「QT3000」の最後のゼロの前に停止するのはなぜですか?
どうもありがとうございます!