Java.util.Scanner.match()


描述

所述java.util.Scanner.match()方法返回通过此扫描器执行的最后扫描操作的匹配结果。如果未执行匹配,或者上次匹配不成功,则此方法抛出IllegalStateException。

声明

以下是java.util.Scanner.match()方法的声明

public MatchResult match()

参数

NA

返回值

此方法返回上次匹配操作的匹配结果

异常

IllegalStateException - 如果没有匹配结果可用

实例

以下示例显示了java.util.Scanner.match()方法的用法。

package com.tutorialspoint;

import java.util.*;

public class ScannerDemo {
   public static void main(String[] args) {

      String s = "Hello World! 3 + 3.0 = 6 ";

      // create a new scanner with the specified String Object
      Scanner scanner = new Scanner(s);

      // check if next token is "Hello"
      System.out.println("" + scanner.hasNext("Hello"));

      // find the last match and print it
      System.out.println("" + scanner.match());

      // print the line
      System.out.println("" + scanner.nextLine());

      // close the scanner
      scanner.close();
   }
}

让我们编译并运行上面的程序,这将产生以下结果

true
java.util.regex.Matcher[pattern = Hello region = 0,25 lastmatch = Hello]
Hello World! 3 + 3.0 = 6