Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {
    public static void main(String[] arg) {
        String text = "To be or not to be, that is the question.";
        String delimiters = "[, .]";
        int[] limits = { 0, -1 };
        for (int limit : limits) {
            System.out.println("\nAnalysis with limit = " + limit);
            String[] tokens = text.split(delimiters, limit);
            System.out.println("Number of tokens: " + tokens.length);
            for (String token : tokens) {
                System.out.println(token);
            }
        }
    }
}