有人可以向我解释为什么这两个输出相同吗? // 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);
}