Hoping you can help ! as I need to open/read a html file from a remote server and parse some data. Here is the string I need to read:
<td>
<p align="center">Order
</p>
</td>
<td>
<p align="center">89
</p>
</td>
and then I must extract whatever numerical characters are present.
And I need to do this twice within the same file, once for"Order" and then for "Ticket".
<td>
<p align="center">Order
</p>
</td>
<td>
<p align="center">89
</p>
</td>
</center>
<td>
<p align="center">55%
</p>
</td>
</tr>
<center>
<tr>
<td>
<p align="center">12/5/2000
</p>
</td>
<td>
<p align="center">TroubleTicket
</p>
</td>
<td>
<p align="center">17
</p>
</td>
Realy appreciate the help,
Pedro