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








Syntax

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

public String substring(int beginIndex,  int endIndex)

Example

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

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

The code above generates the following result.