Hello all. I'm a newbie.
I have a csv file. The fields are delimited with ; (semicolon). It looks like this
Title;Description;Image-Name
Boat;Boat on the river;boat.jpg
Car;Sportscar in the mountains;car.jpg
Lake;Sunset over the lake;lake.jpg
I managed to read my csv. I can display the whole rows. However I cannot figure how to address the individual fields of each row. Can I iterate through these or do I need to apply a splitting looking for the ;?
So e.g. I want to show on my mobile the Title, I want to load the picture based on the jpg-name and below that I want to display the description.
How do I need to extend this textblock, to read e.g. only the jpg name into a variable that I can use later on for loading the picture?
Thanks
André