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

Can I get a method to parse a string eg: {"apple","fruit"} and put the elements in a two D array.

share|improve this question
Is this a homework question? – user183037 Feb 3 '11 at 6:02
Yes, you can. Yes, you can. Yes, you can. – SidCool Feb 3 '11 at 6:04
Umm ... how do you put the elements of a list into a 2D array? – Stephen C Feb 3 '11 at 6:12
What are you trying to parse here? Are you just trying to get each character of the strings in your first array, into a 2-d array? – Varun Madiath Feb 3 '11 at 6:14
yes getting the first and second names to put in a 2-D array. – mohammedsuhail Feb 3 '11 at 6:36

1 Answer

up vote 1 down vote accepted

StringTokenizer might be useful to you.

share|improve this answer
thanks!! Was useful... – mohammedsuhail Feb 3 '11 at 9:30

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.