Java StringBuffer.subSequence(int start, int end)
Syntax
StringBuffer.subSequence(int start, int end) has the following syntax.
public CharSequence subSequence(int start, int end)
Example
In the following code shows how to use StringBuffer.subSequence(int start, int end) method.
/* w w w . j av a 2 s . c om*/
public class Main {
public static void main(String[] arg) {
StringBuffer buffer = new StringBuffer("from java2s.com");
System.out.println(buffer.subSequence(1,2));
}
}
The code above generates the following result.