java remove text from string code example
Example 1: Java remove character from string
public class SubstringDemo
{
public static void main(String[] args)
{
String strInput = "Flower Brackets!";
String strOutput = strInput.substring(0, strInput.length() - 1);
System.out.println(strOutput);
}
}
Example 2: 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);
}
}