項目我有多個項目在表中,此格式使用preg_match_all擺脫HTML
<td class="product highlighted">
Item Name
</td>
,我使用下面的PHP代碼
$regex_pattern = "/<td class=\"product highlighted\">(.*)<\/td>/";
preg_match_all($regex_pattern,$buffer,$matches);
print_r($matches);
我沒有得到任何輸出,但我可以看到HTML中的項目。
我的正則表達式有什麼問題嗎?
我聞到類似的東西已經被多次詢問......。請使用搜索。 – hakre
例如[如何使用正則表達式來匹配換行符](http://stackoverflow.com/questions/1985941/how-to-make-dot-match-newline-characters-using-regular-expressions) – mercator