Finds the substring of a StringBuffer starting from specified index.
public class StringBufferExample {
public static void main(String[] args) {
StringBuffer buff = new StringBuffer("Hello World");
String value = buff.substring(6);
System.out.println(value);
}
}




















