如何在Java扫描器中使用分隔符?

sc = new Scanner(new File(dataFile));
sc.useDelimiter(",|rn");

我不明白分隔符是如何工作的,有人能用通俗的话来解释这个吗?


扫描器也可以使用除空白以外的分隔符。

Scanner 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*fishs*");

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

重点是理解Scanner::useDelimiter的正则表达式( regex )。 在这里找到一个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

使用扫描仪,默认分隔符是空白字符。

但是Scanner可以根据一组分隔符来定义一个令牌的开始结束位置 ,这可以通过两种方式来指定:

  • 使用扫描器方法: useDelimiter(String pattern)
  • 使用扫描器方法: 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
    

    例如:

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

    这会让你使用Enter作为分隔符。

    因此,如果您输入:

    Hello world (ENTER)
    

    它会打印'Hello World'。

    链接地址: http://www.djcxy.com/p/2205.html

    上一篇: How do I use a delimiter in Java Scanner?

    下一篇: when does it block and why?