Java StringBuffer.charAt(int index)
Syntax
StringBuffer.charAt(int index) has the following syntax.
public char charAt(int index)
Example
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");
// ww w. ja v a2s .c o m
System.out.println(buffer.charAt(0));
System.out.println(buffer.charAt(4));
}
}
The code above generates the following result.