Document doc = Jsoup.connect(studentprofiles).get();
Element tables = doc.select("table");
Elements myTdsstudent = tables.select("tr td:eq(1)");
I am able to get all the details one after another in the eq(1).
In the example:
Table:
GK 99
NS 88
PS 55
I have in HTML Table when I do eq(0) I get GK,NS,PS.
when I do eq(1) I get 99 88 55.
Is there a way so that I can read using JSOUP as
gk=99
ns=88
PS=55
Right now I am getting as 2 different array of strings.
now iterate over
myTdsstudentand use this