I am using the httpjob to download the txt file from the server, I can see the string of the download. The text file is space delimited, i know the breakdown of the field, in this case it is 40,15,3,47.
I know the code works for the download, I know that I need to put something in the j.success if statement but how would I parse the string, there are 4 columns and 5 lines of text
Thanks
B4X:
Dim j As HttpJob
j.Initialize("", Me)
j.Download(filename)
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
End If
j.Release
I know the code works for the download, I know that I need to put something in the j.success if statement but how would I parse the string, there are 4 columns and 5 lines of text
Thanks