$st_data=<font color=#000000>0.00 <td align="center" bgcolor="#FFFfff" nowrap>58;
//從字串$st_data中抓出"<td align="center" bgcolor="#FFFfff" nowrap>"後面的數字58
preg_match("/nowrap>(.*)/si",$st_data,$match);
print_r($match[1]);
//"/nowrap>(.*)/si"這樣的寫法無法找到58,還請先進指導正確的寫法。
參考看看
$str = "<font color=#000000>0.00 <td align=\"center\" bgcolor=\"#FFFfff\" nowrap>58";
if (preg_match("/nowrap>.*/m", $str, $arr)) {
echo substr($arr[0],strpos($arr[0],">")+1) . "\n";
}