Java String toCharArray() with example
The java string toCharArray() method converts the given string into a sequence of characters. The returned array length is equal to the length of the string.
Syntax :
public char[] toCharArray() Return : It returns a newly allocated character array.
// Java program to demonstrate // working of toCharArray() method class Gfg { public static void main(String args[]) { String s = "GeeksforGeeks"; char[] gfg = s.toCharArray(); for (int i = 0; i < gfg.length; i++) { System.out.println(gfg[i]); } } } |
chevron_right
filter_none
Output:
G e e k s f o r G e e k s
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.

