i have this:
preg_match('/<td class="normal">(\d+(?:\.\d+)*)<\/td>/',$string,$matches);
now... this will match this:
<td class="normal">7.5.446</td>
but no matter how i change the pattern i cant get it to match:
<td class="normal">7.5.446
</td>
i tired multi-line and every combo of what i could think of... no avail