Hi,
Basically I have a text file that I want to read line by line (I have this bit working) and write it to an array.
However I want the data from the text file to be split after every character.
For example:
Text file line 1: ABCDEFG
Array: { A, B, C, D, E, F, G}
Could anyone give me any help on this?
Thanks
SJ996