phpRegex提取html標籤的問題
<tr> <td Height="30"> ·<a class="index_libiao" href="http://www.zh818.com/html/2014/033/7155319.aspx" title="3月14日上海鋼材市場價格匯總" target="_blank"> <font color="#0000FF"> 3月14日上海鋼材市場價格匯總</font> </a></td> <td align="Right"><span class="biaotiriqi"> 3月14日</span></td> </tr> <tr> <td Height="30"> ·<a class="index_libiao" href="http://www.zh818.com/html/2014/033/7155318.aspx" title="3月14日北京鋼材市場價格匯總" target="_blank"> <font color="#0000FF"> 3月14日北京鋼材市場價格匯總</font> </a></td> <td align="Right"><span class="biaotiriqi"> 3月14日</span></td> </tr> <tr> <td Height="30"> ·<a class="index_libiao" href="http://www.zh818.com/html/2014/033/7155317.aspx" title="3月14日天津鋼材市場價格匯總" target="_blank"> <font color="#0000FF"> 3月14日天津鋼材市場價格匯總</font> </a></td> <td align="Right"><span class="biaotiriqi"> 3月14日</span></td> </tr> <tr> <td Height="30"> ·<a class="index_libiao" href="http://www.zh818.com/html/2014/033/7155316.aspx" title="3月14日重慶鋼材市場價格匯總" target="_blank"> <font color="#0000FF"> 3月14日重慶鋼材市場價格匯總</font> </a></td> <td align="Right"><span class="biaotiriqi"> 3月14日</span></td> </tr> <tr> <td Height="30"> ·<a class="index_libiao" href="http://www.zh818.com/html/2014/033/7155315.aspx" title="3月14日廣州鋼材市場價格匯總" target="_blank"> <font color="#0000FF"> 3月14日廣州鋼材市場價格匯總</font> </a></td>
我想擷取所有<td Height="30">×××</td>的標籤中間的內容,應該怎麼寫Regex呢
回複討論(解決方案)
$pattern = "/<td Height=\"30\">([\s\S]*)<\/td>/"; preg_match_all($pattern, $str, $matches); var_dump($matches);
測試可以通過
$pattern = "/<td Height=\"30\">([\s\S]*)<\/td>/"; preg_match_all($pattern, $str, $matches); var_dump($matches);
測試可以通過
規則改下
$pattern = "/<td Height=\"30\">([\s\S]*?)<\/td>/"preg_match_all("/<td\s+Height=\"30\">(.*)<\/td>/iUs", $str, $output);print_r($output);
以上就是phpRegex提取html標籤的問題的內容,更多相關內容請關注topic.alibabacloud.com(www.php.cn)!
相關文章:
提取html標籤的php程式碼範例
通過php提取HTML標籤
php Regex提取圖片url程式