文章介紹了利用php正則表達式提取圖片地址 超鏈接 標題 實現代碼,有需要的朋友可參考一下。
正則表達式提取網址中的id
代碼如下 復制代碼 preg_match('/http://t.sina.com.cn/(d+)/fans//',$html,$result); 正則表達式提取網址中的id
PHP的正則表達式提取圖片地址的代碼。
PHP正則表達式提取超鏈接及其標題
代碼如下 復制代碼
$str = '<a id="top8" href="http://list.MP3.baidu.com/song/A.htm?top8" class="p14" target="_top">歌曲列表</a><br><a target="_blank" id="bp" href="http://list.mp3.baidu.com/list/bangping.html" class="p14">中文金曲榜</a><br><td nowrap="nowrap">• <a id="top19" href="qingyinyue.html?top19" class="p14" target="_top">輕音樂</a></td>';
利用正則表達式是最簡單的,其它的辦法,偶米去想。。。
$pat = '/<a(.*?)href="(.*?)"(.*?)>(.*?)</a>/i';
preg_match_all($pat, $str, $m);
輸出方法:
print_r($m[2]);
print_r($m[4]);