Convert string into character array


 

Convert string into character array

This example helps you know how to convert string into character array.

This example helps you know how to convert string into character array.

Description:

This tutorial demonstrate how to convert a string into array of char. The toCharArray() method converts string to a new character array.

Code:

public class String2Char {
  public static void main(String[] args) {
    String str = "STRING";
    char[] temp = str.toCharArray();
    for (int i = 0; i < temp.length; i++) {
      System.out.print(temp[i]);
    }
  }
}

Output:

Download this code

Ads