Home Java Java-get-example Get Character from String



Get Character from String
Posted on: October 23, 2008 at 12:00 AM
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.


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

 

Related Tags for Get Character from String:
cstringarrayconvertcharthiselementcharacterelementsieexamplectetoexameiltriefrominmnttrretrieveemmehowxaxampseeatracishallmplrayandaractstrrtssriringthsthatpleplndonomo


More Tutorials from this section

Ask Questions?    Discuss: Get Character from String  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.