Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an array of type char and a string that I will be introducing from the keyboard. Can anyone tell me how can I introduce each character of the string in the char array?

share|improve this question
@Damodar: Just for future reference. – Bobby Sep 5 '11 at 12:06
@Bobby : but this is not gud for every silly question making others alram. Its very very basic qestion, i can understand he is not familiar,we should not make them lazy just providing the answer from us with such questions. I feel ,there should be some self digging nature to the people. Not to depend on others. – developer Sep 5 '11 at 15:09
@Damodar it is not a silly question. It is a beginner's question. If you feel this question is too easy for you - and the title suggests it IS a basic question - then move on to any of thousands of more difficult questions. – Steve McLeod Sep 5 '11 at 15:15
@Damodar: That's an ongoing dispute and discussion. Too simple question, General Reference close reason, Are some questions too simple?. May I also quote from the downvote-tooltip: This question does not show any research effort; it is unclear or not useful. – Bobby Sep 5 '11 at 15:23
@Steve McLeod : My intention was not make people lazy by providing answers for simple questions, they should incorporate some self digging/learning habit, because, if we google such questions, there will be 100s of answers available from different sites.Also people will learn more on self learning. – developer Sep 5 '11 at 15:28

3 Answers

You don't need to create an array in advance. Here is the code

String s; //this is your string which you enter from keyboard

char[] c=s.toCharArray();
share|improve this answer

string.toCharArray() will convert a String to a char array.

Alternatively, iterate over the string's characters and store them into your array:

char[] myArray = ...
int index = ... 
for(int i = 0 ; i < string.length() ; i++) {
    char c = string.charAt(i);
    myArray[index] = c;
    index++;
}
share|improve this answer

1.
char[] charArray=yourString.toCharArray(); is the best way to convert a String into Char Array
2.
char[] arr=new char[yourString.length()]; int j=0; for(int i = 0 ; i < string.length() ; i++) { char c = string.charAt(i); arr[j] = c; j++; }
1st option is better then second

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.