Java tutorial
/* * Output: his * */ public class MainClass { public static void main(String args[]) { String s = "This is an demo."; int start = 1; int end = 5; char buf[] = new char[end - start]; s.getChars(start, end, buf, 0); System.out.println(buf); } }