so to outline my problem i am trying to get *VALUE* and the html is formatted as such
<td style="WHATEVER1">
*VALUE1*
</td>
<td style="WHATEVER2">
*VALUE2*
</td>
i have been going about it by trying to replace using regex style="match anything"> with ">" so that it would end up like
<td>
*VALUE1*
</td>
<td>
*VALUE2*
</td>
then using explode to get everything between <td>'s as an array, i then later have to remove </td>
first off i cant get a regex to match what i need it to
also if anyone has a better way of doing this that would be awesome, to make it easier i know that there is nothing after the style ever, its always style="something">
any help would be appreciated