I'm just wondering if anyone could answer a question for me?
Would it be possible to take a string variable of 8 letters and then put each letter into a char array?
For example:
String str;
str = "ABCDEFGH";
Would you be able to take this string variable and split it into an array of 8 characters?
Update:
char[] charArray = str.toCharArray();
will do it
Exactly same question, answered here:
Split string into array of character strings