StringBuffer.charAt(int index) has the following syntax.
public char charAt(int index)
In the following code shows how to use StringBuffer.charAt(int index) method.
public class Main { public static void main(String args[]) { StringBuffer buffer = new StringBuffer("hello java2s.com"); /*from w w w .ja v a 2s .c o m*/ System.out.println(buffer.charAt(0)); System.out.println(buffer.charAt(4)); } }
The code above generates the following result.