remove element in 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: remove a string from a string java
str = "manchester united (with nice players)"
matched = str.match(/.*(?=\()/)
str.replace(matched[0].strip) if matched