我在閱讀html內容。有圖像標記,如正則表達式提取圖像鏈接
<img onclick="document.location='http://abc.com'" src="http://a.com/e.jpg" onload="javascript:if(this.width>250) this.width=250">
或
<img src="http://a.com/e.jpg" onclick="document.location='http://abc.com'" onload="javascript:if(this.width>250) this.width=250" />
我試圖重新格式化該標籤成爲
<img src="http://a.com/e.jpg" />
但是我不是成功的。我試圖建立迄今爲止的代碼就像
$image=preg_replace('/<img(.*?)(\/)?>/','',$image);
任何人都可以幫忙嗎?
這不是正則表達式的任務。改爲使用HTML解析器。 –