Java Util Regex Java by API

/*
 * Output:
Next token: www
Next token: rntsoft
Next token: com
Next token: java
Next token: javascript
Next token: API
Next token: example
 * */
import java.util.regex.Pattern;
public class MainClass {
  public static void main(String args[]) {
    Pattern pat = Pattern.compile("[ ,.!]");
    String strs[] = pat.split("www.rntsoft.com java javascript API example.");
    for (int i = 0; i < strs.length; i++)
      System.out.println("Next token: " + strs[i]);
  }
}