Java Scanner useDelimiter()方法
java.util.Scanner.useDelimiter(String pattern) 方法设置此scanner的分隔模式,以从指定字符串构造的模式。
1 语法
public Scanner useDelimiter(String pattern)
2 参数
pattern:一个字符串,指定一个分隔模式
3 返回值
此方法返回此scanner。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.util.Scanner.useDelimiter(String pattern) 方法的例子
*/
import java.util.*;
public class Demo {
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
热门文章
优秀文章