Java 正则 中的 Matcher toMatchResult

首页 / 正则入门教程 / Java 正则 中的 Matcher toMatchResult

java.util.regex.Matcher.toMatchResult()方法将此匹配器的匹配状态作为MatchResult返回。

MatchResult toMatchResult() - 声明

以下是 java.util.regex.Matcher.toMatchResult()方法的声明。

链接:https://www.learnfk.comhttps://www.learnfk.com/javaregex/javaregex-matcher-tomatchresult.html

来源:LearnFk无涯教程网

public MatchResult toMatchResult()

MatchResult toMatchResult() - 返回值

具有此匹配器状态的MatchResult。

MatchResult toMatchResult() - 示例

下面的示例显示java.util.regex.Matcher.toMatchResult()方法的用法。

package com.learnfk;

import java.util.regex.MatchResult;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class MatcherDemo {
   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) {
      //创建一个模式
      Pattern pattern = Pattern.compile(REGEX);
      
      //获取匹配器对象
      Matcher matcher = pattern.matcher(INPUT); 

      if(matcher.find()) {
         //获取 MatchResult 对象
         MatchResult result = matcher.toMatchResult();

         //在此匹配期间打印给定组捕获的子序列的最后一个字符之后的偏移量。
         System.out.println("Second Capturing Group - Match String - end(1): "+result.end(1));         
      }
   }
}

让无涯教程编译并运行以上程序,这将产生以下输出-

无涯教程网

Second Capturing Group - Match String - end(1): 26

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

从0开始学游戏开发 -〔蔡能〕

从0开始学微服务 -〔胡忠想〕

数据分析实战45讲 -〔陈旸〕

手机摄影 -〔@随你们去〕

Python自动化办公实战课 -〔尹会生〕

程序员的测试课 -〔郑晔〕

手把手带你搭建秒杀系统 -〔佘志东〕

Vue 3 企业级项目实战课 -〔杨文坚〕

超级访谈:对话道哥 -〔吴翰清(道哥)〕

好记忆不如烂笔头。留下您的足迹吧 :)