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 {
//from w w w . ja v a2 s .c o m
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.