當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java 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

相關用法


注:本文由純淨天空篩選整理自 Java.util.Scanner.match() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。