Friday, 13 April 2018

Convert String to Character Array Example



  1. /*
     Convert String to Character Array Example
     This example shows how to convert a given String object to an array
     of character
     */

    public class StringToCharacterArrayExample  
    {

      public static void main(String args[]) 
    {
        //declare the original String object
        String strOrig = “Hello World”;
        //declare the char array
        char[] stringArray;

        //convert string into array using toCharArray() method of string class
        stringArray = strOrig.toCharArray();

        //display the array
        for(int index=0; index < stringArray.length; index++)
          System.out.print(stringArray[index]);

      }

    }

    /*
    Output of the program would be :
    Hello World
    */

1 comment:

Codecademy Code Foundations

Popular Posts

Categories

Android (23) AngularJS (1) Assembly Language (2) Books (10) C (75) C# (12) C++ (81) Course (1) Data Strucures (4) Downloads (1) Engineering (13) flutter (1) FPL (17) Hadoop (1) HTML&CSS (40) IS (25) Java (89) Leet Code (4) Pandas (1) PHP (20) Projects (19) Python (423) R (69) Selenium Webdriver (2) Software (14) SQL (27)