Java Scanner skip()方法

java.util.Scanner.skip(Pattern pattern) 方法跳过输入相匹配的指定模式,在忽略分隔符。这个方法会跳过输入,如果锚定的指定模式匹配成功。如果没有找到在当前位置匹配到指定的模式,则没有输入被跳过,抛出NoSuchElementException。

1 语法

public Scanner skip(Pattern pattern)

2 参数

pattern:一个字符串,指定跳过的模式

3 返回值

此方法返回此scanner。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.util.Scanner.skip(Pattern pattern)方法的例子
 */
import java.util.*;
import java.util.regex.Pattern;

public class Demo {
    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 

热门文章

优秀文章