I have a corrupt html-page which i unfortunately can't parse with xml/xcode so i came up with regex. I'm a regexbeginner but I cant get the right result.
Source
<td>FIELD:</td> <td>VALUE<td>
I want to get the value and this is where I'm stuck
$regex = '{<td[^>]*<td>(.*?)</td>}';
edit: as a result I want an array where I can reach the value, so I'm just interested in the value
I'm thankfull for every hint.
cheers endo