Java Scanner delimiter()方法

java.util.Scanner.delimiter() 方法返回这个Scanner是目前使用相匹配的分隔符的模式。

1 语法

public Pattern delimiter()

2 参数

3 返回值

此方法返回此scanner 的分隔模式。

4 示例 

package com.yiidian;

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

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

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

        // print the delimiter this scanner is using
        System.out.println("" + scanner.delimiter());

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

输出结果为:

Hello World! 3 + 3.0 = 6
\p{javaWhitespace}+

热门文章

优秀文章