Remove a particular character from a string in Java

Following example shows how to remove a character from a particular position from a string with the help of removeCharAt(string,position) method.

public class RemoveChar{
   public static void main(String args[]){
     
      String str = "This is Java Programming";
      System.out.println(removeCharAt(str, 3));
      }
      public static String removeCharAt(String s, int pos) { 
         return s.substring(0, pos) s.substring(pos + 1);
   }
}
Result:
The above code sample will produce the following result.
Thi is Java Programming


Source code