English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The Java String toCharArray() method converts a string to a char array and returns it.
The syntax of the toCharArray() method is:
string.toCharArray(int startIndex, int endIndex)
Here, string is an object of the String class.
Without any parameters
Returns a char array
class Main { public static void main(String[] args) { String str = "Java Programming"; //Create a char array char[] result; result = str.toCharArray(); System.out.println(result); // Java Programming } }
Here, the length of the char array result (result) will be equal to the length of the string str.