I have a text file which contains two lists on each line. Each list can contain any number of alphanumeric arguments. eg [t1,t2,...] [m1,m2,...] I can read the file into ghc, but how can I read this into another main file and how can the main file recognise each argument separately to then process it?
|
|
I think it's best for you to figure out most of this for yourself, but I've got some pointers for you. Firstly, try not to deal with the file access until you've got the rest of the code working, otherwise you might end up having IO all over the place. Start with some sample data:
You should not mention Once you have a function that does everything you want, eg
If If they really are alphanumeric, you can split them quite easily. Here are some handy functions, with examples.
You can use that to throw away something you don't want at the front of your string.
So
You can use these functions with things like You might want to look at the functions |
|||||||||||||||
|