MainClass.java Source code

Java tutorial

Introduction

Here is the source code for MainClass.java

Source

public class MainClass {
    public static void main(String args[]) {
        String letters = "abcdefghijklmabcdefghijklm";

        // test substring methods
        System.out.printf("Substring from index 20 to end is \"%s\"\n", letters.substring(20));
        System.out.printf("%s \"%s\"\n", "Substring from index 3 up to, but not including 6 is",
                letters.substring(3, 6));
    } // end main
}