當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.util.Scanner.delimiter()用法及代碼示例



描述

這個java.util.Scanner.delimiter()方法返回此掃描器當前用於匹配分隔符的模式。

聲明

以下是聲明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}+

相關用法


注:本文由純淨天空篩選整理自 Java.util.Scanner.delimiter() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。