El método Java String charAt() devuelve el carácter en el índice especificado. El valor del índice debe estar entre 0 y length()-1.
Firma:
public char charAt(int index)
Parámetro:
index- Index of the character to be returned.
Devolver:
returns character at the specified position.
Excepción:
StringIndexOutOfBoundsException- If index is negative or greater then the length of the String.
Ejemplo: para mostrar el funcionamiento del método charAt()
// Java program to demonstrate // working of charAt() method class Gfg { public static void main(String args[]) { String s = "Welcome! to Geeksforgeeks Planet"; char ch = s.charAt(3); System.out.println(ch); ch = s.charAt(0); System.out.println(ch); } }
Producción:
c W
// Java program to demonstrate // working of charAt() method class Gfg { public static void main(String args[]) { String s = "abc"; char ch = s.charAt(4); System.out.println(ch); } }
Producción:
Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 4 at java.lang.String.charAt(String.java:658) at Gfg.main(File.java:9)
Publicación traducida automáticamente
Artículo escrito por Niraj_Pandey y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA