Hi Chris,
Hope you can help me !
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 after the second occurance of <p align="center">
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