Stephen,
Did yu ever figure out how to parse the html file ? as I need to do something similar, perhaps you can share you knowledge !
Here is what I need to do:
open/read a html file from a remote server and parse some data. Here is the string I need to find/read:
<td>
<p align="center">Order
</p>
</td>
<td>
<p align="center">89
</p>
</td>
and then I need to extract whatever numerical characters are present.
And I need to do this twice within the same file, once for "Order" and then for "TroubleTicket".
<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 any help,
Pedro