Java.util.Scanner.delimiter()


描述

所述java.util.Scanner.delimiter()方法返回此Scanner当前正在用于匹配分隔符的Pattern。

声明

以下是java.util.Scanner.delimiter()方法的声明

public Pattern delimiter()

参数

NA

返回值

此方法返回此扫描程序的分隔模式。

异常

NA

实例

以下示例显示了java.util.Scanner.delimiter()方法的用法。

现场演示
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);

      // 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}+