Essentially I have an array named symbols String[] symbols = {"a*", "j^", "y!"}
which from that I would like to create another array with each of the single characters from the symbols array being in a single element in the new array, something like this char[] newArr = {'a', '*' ..... }.
In terms me solving this my guess would be to iterate over the elements in the first array then in a nested loop loop over the single characters in that element then assign it to the new array there, but I am unsure how to do that.
symbols. With each entry, iterate over eachcharand add thatcharto thenewArrarrayString[]? It seems to me that achar[]would be more useful here.char[]as it has two characters togetherString[].