El método deleteCharAt(int index) de la clase StringBuilder elimina el carácter en el índice dado de String contenido por StringBuilder. Este método toma index como un parámetro que representa el índice de char que queremos eliminar y devuelve la string restante como objeto StringBuilder. Este StringBuilder se acorta en un carácter después de la aplicación de este método. Sintaxis:
public StringBuilder deleteCharAt(int index)
Parámetros: este método acepta un índice de parámetro que representa el índice del carácter que desea eliminar. Valor de retorno: este método devuelve este objeto StringBuilder después de eliminar el carácter. Excepción: este método arroja una excepción StringIndexOutOfBoundsException si el índice es menor que cero o si el índice es mayor que la longitud de String. Los siguientes programas demuestran el método deleteCharAt() de la clase StringBuilder: Ejemplo 1:
Java
// Java program to demonstrate // the deleteCharAt() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder("WelcomeGeeks"); // print string System.out.println("Before removal String = " + str.toString()); // remove the Character from index 8 StringBuilder afterRemoval = str.deleteCharAt(8); // print string after removal of Character System.out.println("After removal of character" + " at index 8 = " + afterRemoval.toString()); } }
Before removal String = WelcomeGeeks After removal of character at index 8 = WelcomeGeks
Ejemplo 2:
Java
// Java program to demonstrate // the deleteCharAt() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder("GeeksforGeeks"); // print string System.out.println("Before removal String = " + str.toString()); // remove the Character from index 3 str = str.deleteCharAt(3); // print string after removal of Character System.out.println("After removal of Character" + " from index=3" + " String becomes => " + str.toString()); // remove the substring from index 5 str = str.deleteCharAt(5); // print string after removal of Character System.out.println("After removal of Character" + " from index=5" + " String becomes => " + str.toString()); } }
Before removal String = GeeksforGeeks After removal of Character from index=3 String becomes => GeesforGeeks After removal of Character from index=5 String becomes => GeesfrGeeks
Ejemplo 3: Para demostrar IndexOutOfBoundException
Java
// Java program to demonstrate // exception thrown by the deleteCharAt() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder("evil dead_01"); try { // make index > length of String StringBuilder afterRemoval = str.deleteCharAt(14); } catch (Exception e) { System.out.println("Exception: " + e); } } }
Exception: java.lang.StringIndexOutOfBoundsException: String index out of range: 14
Referencia: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuilder.html#deleteCharAt(int)
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA