String.split和计数令牌

时间:2015-04-09 10:15:49

标签: java regex string split token

有人可以向我解释为什么这两个输出相同吗? // S表示非空格。感谢

public static void main(String[] args){

    String test = "I am noob ";
    String[] tokens = test.split("\\S");
    System.out.println(tokens.length);

    String test2 = "I am noob 132434";
    String[] tokens2 = test2.split("\\S");
    System.out.println(tokens2.length);
}

0 个答案:

没有答案