Hello, all. I've been working on a solution to a problem that I hope you may help me solve. I need to get data from a simple text file and most likely store the data in parallel arrays. Unfortunately, I don't have experience with the two concepts I'm supposed to use: accessing files and tokenizing strings.
The data file will have data like Name/18/M/8 on each line.
I will need to display all the information, and perform boolean expressions on the numbers.
I was thinking of creating parallel arrays, storing all the names in one array, the second token (age) in another, etc....
Using the concept of tokens, I think I can first create arrays of strings, then create separate arrays.
Is this a good solution?

