how to find and remove a specific character from string in java code example
Example 1: Java remove character from string
public class RemoveParticularCharacter
{
public static void main(String[] args)
{
String strInput = "Hello world java";
System.out.println(removeCharacter(strInput, 6));
}
public static String removeCharacter(String strRemove, int r)
{
return strRemove.substring(0, r) + strRemove.substring(r + 1);
}
}
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);
}
}