Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String args[]) {
String s = "This is a test string from java2s.com.";
int start = 10;
int end = 14;
char buf[] = new char[end - start];
s.getChars(start, end, buf, 0);
System.out.println(buf);
}
}