static Pattern compile(String regex, int flags)
优质
小牛编辑
126浏览
2023-12-01
描述 (Description)
java.util.regex.Pattern.compile(String regex, int flags)方法将给定的正则表达式编译为模式。
声明 (Declaration)
以下是java.util.regex.Pattern.compile(String regex, int flags)方法的声明。
public static Pattern compile(String regex, int flags)
参数 (Parameters)
regex - 要编译的表达式。
flags - 匹配标志,一个位掩码,可能包括CASE_INSENSITIVE,MULTILINE,DOTALL,UNICODE_CASE,CANON_EQ,UNIX_LINES,LITERAL,UNICODE_CHARACTER_CLASS和COMMENTS。
异常 (Exceptions)
IllegalArgumentException - 如果在flags中设置了与定义的匹配标志对应的位值以外的位值。
PatternSyntaxException - 如果表达式的语法无效。
例子 (Example)
以下示例显示了java.util.regex.Pattern.compile(String regex,int flags)方法的用法。
package cn.xnip;
import java.util.regex.MatchResult;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class PatternDemo {
private static final String REGEX = "(.*)(\\d+)(.*)?# 3 capturing groups";
private static final String INPUT = "This is a sample Text, 1234, with numbers in between.";
public static void main(String[] args) {
// create a pattern
Pattern pattern = Pattern.compile(REGEX,Pattern.COMMENTS);
// get a matcher object
Matcher matcher = pattern.matcher(INPUT);
if(matcher.find()) {
//get the MatchResult Object
MatchResult result = matcher.toMatchResult();
//Prints the offset after the last character matched.
System.out.println("First Capturing Group - Match String end(): "+result.end());
}
}
}
让我们编译并运行上面的程序,这将产生以下结果 -
First Capturing Group - Match String end(): 53