Java Data Type Tutorial - Java StringBuilder.substring(int start)








Syntax

StringBuilder.substring(int start) has the following syntax.

public String substring(int start)

Example

In the following code shows how to use StringBuilder.substring(int start) method.

public class Main {
// w  w w .j a v  a 2 s .c  o  m
  public static void main(String[] arg) {

    StringBuilder buffer = new StringBuilder("from java2s.com");
    
    System.out.println(buffer.substring(2));
  }

}

The code above generates the following result.