Java Data Type Tutorial - Java String.substring(int beginIndex)








Syntax

String.substring(int beginIndex) has the following syntax.

public String substring(int beginIndex)

Example

In the following code shows how to use String.substring(int beginIndex) method.

public class Main {
  public static void main(String[] argv) {
    String str = "java2s.com";
    System.out.println(str.substring(2));
  }
}

The code above generates the following result.