hi, i am having a problem with parsing html from which i would like to get the data
<td id="Company" style="border-bottom-width: 0px; padding-left: 5px">
<strong>ABC</strong>
</td>
so the data i need is of course "ABC" only, i have tried the following parsing rule but it does not work
/<td id=\"Company\" style=\"border-bottom-width: 0px; padding-left: 5px\">
<strong>(.*)<\/strong>
<\/td>/i
anyone can help and is familiar with this?