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 = "java2s.com";
        System.out.println("string = " + str);

        // returns the index within this String
        int retval = str.offsetByCodePoints(2, 4);
        // prints the index
        System.out.println("index = " + retval);
    }
}