I have a code that do a list import via ftp
That works fine
the file look like these UTF-8
Name,Email, use facebook, use twitter, Hobbes
Alice, [email protected],true, false, cooking and lisen music
Albert, [email protected], true, true, play computer games
...
What i now want is that i get only the name and Hobbies info in label from list1
How can i do this?
That works fine
the file look like these UTF-8
Name,Email, use facebook, use twitter, Hobbes
Alice, [email protected],true, false, cooking and lisen music
Albert, [email protected], true, true, play computer games
...
B4X:
Dim List1 As List
Dim row As String
List1 = File.ReadList(File.DirInternal, "book.txt")
row = List1.Get(1)
Msgbox( row ,"Rij")
What i now want is that i get only the name and Hobbies info in label from list1
How can i do this?