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








Syntax

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

public String substring(int start)

Example

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

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

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

}

The code above generates the following result.