当前位置: 首页 > 工具软件 > Regex Util > 使用案例 >

java compile方法_java.util.regex.Pattern.compile()方法

公良浩邈
2023-12-01

java.util.regex.Pattern.compile(String regex)方法将给定的正则表达式编译为模式。

声明

以下是java.util.regex.Pattern.compile(String regex)方法的声明。

public static Pattern compile(String regex)

参数

regex – 要编译的表达式。

异常

PatternSyntaxException – 如果表达式的语法无效。

示例

以下示例显示了java.util.regex.Pattern.compile(String regex)方法的用法。

package com.yiibai; import java.util.regex.MatchResult; import java.util.regex.Matcher; import java.util.regex.Pattern; public class PatternDemo { private static final String REGEX = "(.*)(\d+)(.*)"; 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); // 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

¥ 我要打赏 纠错/补充 收藏

 类似资料: