java.util.regex.Pattern.compile() 方法
描述
java.util.regex.Pattern.compile(String regex, int flags) 方法将给定的正则表达式编译成一个模式。
声明
以下是 java.util.regex.Pattern.compile(String regex, int flags) 方法的声明。
public static Pattern compile(String regex, int flags)
参数
regex − 要编译的表达式。
flags − 匹配标志,一个位掩码,可能包括 CASE_INSENSITIVE、MULTILINE、DOTALL、UNICODE_CASE、CANON_EQ、UNIX_LINES、LITERAL、UNICODE_CHARACTER_CLASS 和 COMMENTS。
异常
IllegalArgumentException − 如果在 flags 中设置了与定义的匹配标志对应的位值以外的位值。
PatternSyntaxException − 如果表达式的语法无效。
示例
下面的例子展示了 java.util.regex.Pattern.compile(String regex, int flags) 方法的用法。
package com.tutorialspoint; 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