Answers for "how to take input as string and convert to array in java"

2

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); 
        } 
    } 
}
Posted by: Guest on May-20-2020

Code answers related to "how to take input as string and convert to array in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language