That actually works very well, however I am trying to parse the content directly by using the OKTTHP library
Dim job As HttpJob
job.Initialize("", Me)
job.Download("https://www.murashev.com/opera/La_traviata_libretto_English_Italian")
Wait For (job) JobDone(job As HttpJob)
If job.Success Then
'''Log(job.GetString)
s = job.GetString
File.WriteString(File.DirApp, "opera.html", s)
End If
job.Release
It doesn't seem to work by doing this way, and also, is there a way to extract each column side by side, what I mean is that I would like to extract each English Row and it's Italian row side by side, rather than extracting all the rows of the English translation at once and then all the Italian rows at once?
Walter