📅  最后修改于: 2020-11-14 10:18:09             🧑  作者: Mango
捕获组是一种将多个字符视为一个单元的方法。通过将要分组的字符放在一组括号内来创建它们。例如,正则表达式(狗)创建一个包含字母“ d”,“ o”和“ g”的单个组。
捕获组通过从左到右计数其开括号来编号。在表达式((A)(B(C)))中,例如有四个这样的组-
若要查找表达式中存在多少个组,请在匹配器对象上调用groupCount方法。 groupCount方法返回一个整数,该整数表示匹配器模式中存在的捕获组数。
还有一个特殊的组,组0,它始终代表整个表达式。该组不包括在groupCount报告的总数中。
下面的例子说明如何找到从给定的字母数字字符串,数字字符串-
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegexMatches {
public static void main( String args[] ) {
// String to be scanned to find the pattern.
String line = "This order was placed 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) );
} else {
System.out.println("NO MATCH");
}
}
}
这将产生以下结果-
Found value: This order was placed for QT3000! OK?
Found value: This order was placed for QT300
Found value: 0