Skip to content

Instantly share code, notes, and snippets.

@kineticz
Created January 27, 2015 14:56
Show Gist options
  • Select an option

  • Save kineticz/8eb30ca0b03e1d93d9f2 to your computer and use it in GitHub Desktop.

Select an option

Save kineticz/8eb30ca0b03e1d93d9f2 to your computer and use it in GitHub Desktop.
public class Main {
public static void main(String[] args) {
char[] a = "0123456789".toCharArray();
// create a string from a char array
String x = new String(a, 2, 3);
System.out.println(x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment