Development Java Tutorial

public class MainClass {
  public static void main(String[] arg) {
    StringBuffer phrase = new StringBuffer("one two three four");
    phrase.deleteCharAt(10);      
    System.out.println(phrase);
  }
}
one two thee four