Possible Duplicate:
Grabbing the href attribute of an A element獲得的一個元素
喂的href屬性的內容,
我有以下的HTML我想分析:
<td align="left" nowrap="nowrap"><a href="XXXXXXX">
我要救XXXXX一個變量。 我幾乎不知道正則表達式。我知道如何使用strpos,substr等來完成它,但我相信它比使用正則表達式要慢。
if (preg_match('!<td align="left" NOWRAP><a href=".\s+/.+">!', $result, $matches))
echo $matches[1];
else
echo "error!!!";
我知道前面的代碼是一個正則表達式專家的暴行。但我真的不知道該怎麼做。我需要一些提示,而不是完整的解決方案。
http://www.codinghorror.com/blog/2009/11/parsing-html-the-cthulhu-way.html – Diarmaid 2011-04-29 14:42:27
經過測試dom和正則表達式後,我發現使用strpos,substr實際上更快... – Cornwell 2011-04-29 15:59:12