Get Character from String

In this example we will see that how to convert string to array of character and retrieve elements from that character array one by one.

Get Character from String

In this example we will see that how to convert string to array of character and retrieve elements from that character array one by one.

Get Character from String

Get Character from String

     

In this example we will see that how to convert string to array of character and retrieve elements from that character array one by one.


Description of the code:
1.
First declare and initialize string.
2. use method toCharArray() to convert string to character array.
3. Retrieve character from character array one by one using for loop.
 

 

 

 

Here is the code of GetCharFromString

public class GetCharFromString{
  
  public void convertStringToChar() {
  String str = "ANUSMITA";
  char[] ch = str.toCharArray();
  for (char c : ch)
  System.out.println(c);
  }
  public static void main(String[] args) {
  new GetCharFromString().convertStringToChar();
  }
}

 

Output will be displayed as:

 

Download Source Code