Skip to content

Instantly share code, notes, and snippets.

@tokgozmusa
Created June 5, 2018 18:03
Show Gist options
  • Save tokgozmusa/3361380392285febf181724e91714bd1 to your computer and use it in GitHub Desktop.
Save tokgozmusa/3361380392285febf181724e91714bd1 to your computer and use it in GitHub Desktop.
java-useful
String str = "hello";
char[] arr = str.toCharArray();
Arrays.toString(arr); // "[h, e, l, l, o]"
String.valueOf(arr)); // "hello"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment