Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

Java String charAt() Method

❮ String Methods


Example

Return the first character (0) of a string:

public class MyClass {
  public static void main(String[] args) {
    String myStr = "Hello";
    char result = myStr.charAt(0);
    System.out.println(result);
  }
}

Run example »


Definition and Usage

The charAt() method returns the character at the specified index in a string.

The index of the first character is 0, the second character is 1, and so on.


Syntax

public char charAt(int index)

Parameter Values

Parameter Description
index An int value representing the index of the character to return

Technical Details

Returns: A char value at the specified index of this string.
The first char value is at index 0
Throws: IndexOutOfBoundsException - if index is negative or not less than the length of the specified string

❮ String Methods