java.util.Scanner.skip()方法實例
java.util.Scanner.skip(Pattern pattern) 方法跳過輸入相匹配的指定模式,在忽略分隔符。這個方法會跳過輸入,如果錨定的指定模式匹配成功。如果冇有找到在當前位置匹配到指定的模式,則冇有輸入被跳過,拋出NoSuchElementException。
聲明
以下是java.util.Scanner.skip()方法的聲明
public Scanner skip(Pattern pattern)
參數
-
pattern -- 一個字符串,指定跳過的模式
返回值
此方法返回此scanner
異常
-
NoSuchElementException -- 如果冇有找到指定的模式
-
IllegalStateException -- 如果此scanner已關閉
例子
下麵的示例演示java.util.Scanner.skip()方法的用法。
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.0 true "; // create a new scanner with the specified String Object Scanner scanner = new Scanner(s); // skip the word that matches the pattern ..llo scanner.skip(Pattern.compile("..llo")); // print a line of the scanner System.out.println("" + scanner.nextLine()); // close the scanner scanner.close(); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
World! 3 + 3.0 = 6.0 true