Programming Reference/Librarys
Question & Answer
Q&A is closed
converts a string to a new character array
package codereferececomjava; public class CodeRefereceComJava { public static void main(String[] args) { String str = "some Text"; char[] text; System.out.println(str); // print the String text = str.toCharArray(); for (int i = 0; i <= text.length - 1; i++) { System.out.println(text[i]); // print the content of text Array } } }
some Text s o m e T e x t