Easy Tutorial
❮ Java Arraylist Java Number ❯

Java Example - Removing a Character from a String

Java Examples

In the following example, we use the substring() function to remove a character from a string, encapsulating the functionality in the removeCharAt function.

Example code is as follows:

Main.java File

public 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);
   }
}

The output of the above code example is:

thi is Java

Java Examples

❮ Java Arraylist Java Number ❯