phpRegex提取html標籤的問題

來源:互聯網
上載者:User
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程式

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.