cant find it anywhere but what I would like to do is write a function that finds every 5 strings in an array from a text file and converts them 8 to a string. and does this until there are no more strings left in the text file.
OR
use split to split the lines but also use split to split up them lines for example I would like:
name;type;body;due
lewis;homework;blahblahblah;12/12/12
converted into:
Array[name, type, body, due];
Array[lewis, homework, blahblahblah, 12/12/12];
thank you 🙂 if I haven’t explained well ask me and I will try my best to explain better 🙂
Not sure if I followed you correctly. Just putting this forward.
for each line
String [] strArr = lineStr.split(“;”);