java string remove character at index code example

Example 1: Java remove character from string

// Java remove character from string
public class RemoveOnlyLetters
{
   public static void main(String[] args)
   {
      String strExample = "jd15352kLJJD55185716kdkLJJJ";
      System.out.println("Before: " + strExample);
      strExample = strExample.replaceAll("[a-zA-Z]", "");
      System.out.println("After: " + strExample);
   }
}

Example 2: java remove string from character

String str = "abcdDCBA123";
String strNew = str.replace("a", ""); // strNew is 'bcdDCBA123'

Example 3: remove character at index

// removing char at index 3
var str = "Hello World";
str = str.slice(0, 3) + str.slice(4);

console.log(str)  // Helo World