Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {

    public static void main(String[] args) {

        String str = "test from java2s.com";
        String delimiters = "\\s+|,\\s*|\\.\\s*";

        // analyzing the string 
        String[] tokensVal = str.split(delimiters);

        // prints the number of tokens
        System.out.println("Count of tokens = " + tokensVal.length);

        for (String token : tokensVal) {
            System.out.println(token);
        }
    }
}