Here is a Java Program to remove a particular character from a string
Output of Above Java Program
thi is Java
class Main {
public static void main(String args[]) {
String str = "this is Java";
System.out.println(removeCharAt(str, 3));
}
public static String removeCharAt(String s, int pos) {
return s.substring(0, pos) + s.substring(pos + 1);
}
}
Output of Above Java Program
thi is Java