i have this arraylist and i want to put the data in array.but i have the problem to separate the data.
ArrayList data_list:
g e r m a n y
a u s t r a l i a
n e w z e a l a n d
e n g l a n d
c o s t a r i c a
p h i l i p i n a
m y a n m a r
t h a i l a n d
note:each of letter is separate by space.
i want to separate the name of the country to into separate letter such as
germany becomes g e r m a n y
i plan to convert the arraylist to 2d array.so the output become like this:
String[][] country;
country[0][0]=g
country[0][1]=e
country[0][2]=r
country[0][3]=m
country[0][4]=a
country[0][5]=n
country[0][6]=y
country[1][0]=a
country[1][1]=u
country[1][2]=s
country[1][3]=t
country[1][4]=r
country[1][5]=a
country[1][6]=l
country[1][7]=i
country[1][8]=a
anyone can help me?
If your ArrayList looks like this:
Then you can create your array of characters this way:
The test output is