Transform a string into an array of characters.
String myStr = "Hello";char[] myArray = myStr.toCharArray();System.out.println(myArray[0]);
myStr
myArray
out
The toCharArray() method generates a fresh char array that mirrors the content of the string.
public char[] toCharArray()
Java version
Any