Java Scanner with regex delimiter

后端 未结 2 1429
一整个雨季
一整个雨季 2021-02-11 02:51

Why does the following code return false?

Scanner sc = new Scanner(\"-v \");
sc.useDelimiter(\"-[a-zA-Z]\\\\s+\");
System.out.println(sc.hasNext());
2条回答
  •  心在旅途
    2021-02-11 03:44

    Thanks John Kugelman, I think you're right.

    Scanner can use customized delimiter to split input into tokens. The default delimiter is a whitespace.

    When delimiter doesn't match any input, it'll result all the input as one token:

        Scanner sc = new Scanner("-v");
        sc.useDelimiter( "-[a-zA-Z]\\s+");
         if(sc.hasNext())
              System. out.println(sc.next());
    

    In the code above, the delimiter actually doesn't get any match, all the input "-v" will be the single token. hasNext() means has next token.

        Scanner sc = new Scanner( "-v ");
        sc.useDelimiter( "-[a-zA-Z]\\s+");
         if(sc.hasNext())
              System. out.println(sc.next());
    

    this will match the delimiter, and the split ended up with 0 token, so the hasNext() is false.

提交回复
热议问题