Java tutorial
import java.io.*; public class Main { public static void main(String[] args) { CharSequence sq1 = "Hello"; CharSequence sq2 = " World"; PrintWriter pw = new PrintWriter(System.out); // append the sequence pw.append(sq1, 1, 3); pw.append(sq2, 1, 4); // flush the writer pw.flush(); } }