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


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



描述

這個java.util.Scanner.useDelimiter(String pattern)方法 將此掃描器的分隔模式設置為從指定字符串構造的模式。

聲明

以下是聲明java.util.Scanner.useDelimiter()方法

public Scanner useDelimiter(String pattern)

參數

patternâˆ' 指定分隔模式的字符串

返回值

此方法返回此掃描儀

異常

NA

示例

下麵的例子展示了 java.util.Scanner.useDelimiter() 方法的用法。

package com.tutorialspoint;

import java.util.*;

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);

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

      // change the delimiter of this scanner
      scanner.useDelimiter("Wor");

      // display the new delimiter
      System.out.println("" + scanner.delimiter());

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

讓我們編譯並運行上麵的程序,這將產生以下結果——

Hello World! 3 + 3.0 = 6.0 true 
Wor

相關用法


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