I was trying to answer a regex question for someone and I came across something that made me scratch my head. Giving the following code...
public static void main(String[] args) throws IOException {
String test = "Hello, how are you today?";
Pattern p = Pattern.compile("(\\W)+");
String[] words = p.split(test);
System.out.println("--" + words[0] + "--");
System.out.println("--" + words[1] + "--");
}
I get the expected results of
--Hello--
--how--
However when I use ...
public static void main(String[] args) throws IOException {
String test = "Hello, how are you today?";
Pattern p = Pattern.compile("(\\W)*");
String[] words = p.split(test);
System.out.println("--" + words[0] + "--");
System.out.println("--" + words[1] + "--");
}
I get the results
----
--H--
Is there a reason * doesn't work exactly like the + in this situation?