remove string from string in java 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 part of string java

// Works only if you have a certain character at which you want to cut
String text = "Image.png";

String[] cutText = text.split("\\.");

// cutText[0] has value "Image"
// cutText[1] has value "png"

Tags:

Java Example