how to turn string into array java code example
Example: how to convert string to array in java
How to convert string to array
import java.util.*;
public class GFG {
public static void main(String args[])
{
String str = "GeeksForGeeks";
// Creating array and Storing the array
// returned by toCharArray()
char[] ch = str.toCharArray();
// Printing array
for (char c : ch) {
System.out.println(c);
}
}
}