Hi Guys,
I'm basicly reading from a CSV File that im using to store data.
Now when I read from the CSV file i want to load the data to fill in the parameters
eg.
the csv file contains
name,address,age,favColor.
so when i load the file i want it to read in the info and create a new User using the info supplied from the document.
eg.
new Client(name,address,age,favColor).
the main problem is i dont know how long it will be till the next comma?
would it be an idea to load a line.
save the info between commas in temp varibles.
then create the new Client?
Any help much appreciated.