java.util.Scanner.findInLine()方法實例
java.util.Scanner.findInLine(Pattern pattern) 方法試圖找到指定的模式在忽略分隔符的下一次出現。如果模式是下一行分隔符之前找到,則scanner執行匹配的輸入,並返回與該模式匹配的字符串。如果冇有這樣的模式在輸入到下一行分隔符檢測到,則返回null並且scanner的位置不變。此方法可能阻塞等待輸入相匹配的模式。
聲明
以下是java.util.Scanner.findInLine()方法的聲明
public String findInLine(Pattern pattern)
參數
-
pattern --要掃描的模式
返回值
此方法返回匹配指定模式的文本。
異常
-
IllegalStateException -- 如果此scanner已關閉
例子
下麵的示例演示java.util.Scanner.findInLine()方法的用法。
package com.yiibai; import java.util.*; import java.util.regex.Pattern; 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); // find a pattern of any letter plus "ello" System.out.println("" + scanner.findInLine(Pattern.compile(".ello"))); // print the next line of the string System.out.println("" + scanner.nextLine()); // close the scanner scanner.close(); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Hello World! 3+3.0=6