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.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable