I get a string response in this format (lines):
I search for several codes in the forum, but I only found this way (save the string to file and read to a list)
Is possible to generate a list from this string response without save and read the file?
Thanks in advance for any tips .
B4X:
1. The Godfather
2. Citizen Kane
3. Casablanca
4. Schindler's List
5. Pulp Fiction
6. The Shawshank Redemption
7. 2001: A Space Odyssey
8. The Dark Knight
9. Fight Club
10. Forrest Gump
B4X:
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
Log(j.GetString)
File.WriteString(xui.DefaultFolder, "1.txt", j.GetString)
lstResponse = File.ReadList(xui.DefaultFolder, "1.txt")
End If
Thanks in advance for any tips .