如何使用Java中扫描仪的分隔符?如何使用Java中扫描仪的分隔符?(How do I use a

2019-05-10 10:47发布

sc = new Scanner(new File(dataFile));
sc.useDelimiter(",|\r\n");

我不知道如何分隔符的作品,可有人在通俗地说解释一下吗?

Answer 1:

该扫描仪还可以使用,除空白分隔符。

从简单的例子扫描仪API

 String input = "1 fish 2 fish red fish blue fish";

 // \\s* means 0 or more repetitions of any whitespace character 
 // fish is the pattern to find
 Scanner s = new Scanner(input).useDelimiter("\\s*fish\\s*");

 System.out.println(s.nextInt());   // prints: 1
 System.out.println(s.nextInt());   // prints: 2
 System.out.println(s.next());      // prints: red
 System.out.println(s.next());      // prints: blue

 // don't forget to close the scanner!!
 s.close(); 

问题的关键是要了解正则表达式( regex内) Scanner::useDelimiter 。 查找useDelimiter教程这里


要使用正则表达式开始在这里你可以找到一个很好的教程。

笔记

abc…    Letters
123…    Digits
\d      Any Digit
\D      Any Non-digit character
.       Any Character
\.      Period
[abc]   Only a, b, or c
[^abc]  Not a, b, nor c
[a-z]   Characters a to z
[0-9]   Numbers 0 to 9
\w      Any Alphanumeric character
\W      Any Non-alphanumeric character
{m}     m Repetitions
{m,n}   m to n Repetitions
*       Zero or more repetitions
+       One or more repetitions
?       Optional character
\s      Any Whitespace
\S      Any Non-whitespace character
^…$     Starts and ends
(…)     Capture Group
(a(bc)) Capture Sub-group
(.*)    Capture all
(ab|cd) Matches ab or cd


Answer 2:

随着扫描仪默认的分隔符是空白字符。

但扫描仪可以定义一个基于一组分隔符的记号开始结束 ,至极可以以两种方式指定:

  1. 使用扫描仪的方法: useDelimiter(字符串图案)
  2. 使用扫描仪的方法: useDelimiter(图案图案) ,其中图案是正则表达式指定的分隔符集。

所以useDelimiter()方法用于标记化仪的输入,其行为与StringTokenizer类 ,看看这些教程以获得更多信息:

  • 设置分隔符为扫描仪
  • Java.util.Scanner.useDelimiter()方法

这里是一个例子 :

public static void main(String[] args) {

    // Initialize Scanner object
    Scanner scan = new Scanner("Anna Mills/Female/18");
    // initialize the string delimiter
    scan.useDelimiter("/");
    // Printing the tokenized Strings
    while(scan.hasNext()){
        System.out.println(scan.next());
    }
    // closing the scanner stream
    scan.close();
}

打印此输出:

Anna Mills
Female
18


Answer 3:

例如:

String myInput = null;
Scanner myscan = new Scanner(System.in).useDelimiter("\\n");
System.out.println("Enter your input: ");
myInput = myscan.next();
System.out.println(myInput);

这将让你使用输入作为分隔符。

因此,如果你输入:

Hello world (ENTER)

它会打印的“Hello World”。



文章来源: How do I use a delimiter in Java Scanner?