Remove a Particular Character from a String



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

Example

Live Demo

public class Sample {
   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

this is Java
Updated on: 2020-06-18T08:01:46+05:30

272 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements