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