java.util.Scanner.delimiter()方法實例
java.util.Scanner.delimiter() 方法返回這個Scanner是目前使用相匹配的分隔符的模式。
聲明
以下是java.util.Scanner.delimiter()方法的聲明
public Pattern delimiter()
參數
-
NA
返回值
此方法返回此scanner 的分隔模式。
異常
-
NA
例子
下麵的示例演示java.util.Scanner.delimiter()方法的用法。
package com.yiibai; 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}+