Hello friends,
first, greetings to you all!
I have a simple question for you, maybe very amateurish.
Please. I have a CSV file with the individual lines:
kasava;12345;germany;789
jinonice;25645;germany;857
stuhlov;45789;germany;124
etc.
If I use:
OpenToRead (1, "test.csv")
a$ = ReadLine (1)
CloseFile (1)
Then in a$ I have the whole file.
But I need for further work to have in a$ individual lines.
So for example:
a$ [1] = "kasava;12345;germany;789"
a$ [2] = "jinonice;25645;germany;857"
a$ [3] = "stuhlov;45789;germany;124"
And I can't achieve that. Please does anyone know any simple example of how to do this?
Thank you very much in advance!

I am sorry for poor English