remove value from string 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 string from character
String str = "abcdDCBA123";
String strNew = str.replace("a", "");