Here I have simple HTML table which I need get data from
Is there a sample of maybe library which can help with this ?
All the data is in TR's (row)<table style="width:100%; font-size:11px">
<tr>
<td colspan="2">
<strong>Beograd</strong>
</td>
</tr>
<tr>
<td>
<span>Broj leta</span>
</td>
<td><strong>JU 109, JA 1376</strong></td>
</tr>
<tr>
<td>
<span>Avio-kompanija</span>
</td>
<td><strong>JAT AIRWAYS</strong></td>
</tr>
<tr>
<td>
<span>Tip aviona</span>
</td>
<td>AT72</td>
</tr>
<tr>
<td>
<span>Planirano vrijeme</span>
</td>
<td>06:20</td>
</tr>
<tr>
<td>Status leta</td>
<td style="font-weight:bold">
Odletio
</td>
</tr>
<tr>
<td colspan="2"><hr></td>
</tr>
</table>
Is there a sample of maybe library which can help with this ?