廢話不多說了,直接跟大家分享五種方法,通過代碼講解php獲取超鏈接文本內(nèi)容的正則表達式。
//方法一
preg_match_all("/<(a|a)[s]{0,1}[w=":()]*>[ ]*(check user)[ ]*</(a|a)>/i",$string,$matches);
//方法二
preg_match_all("/<a[dd]*>check user</a>/i",$string,$matches); print_r($matches[0]);
//方法三
preg_match_all("/<a[^>]*>[^<]*</a>/i",$string,$matches); print_r($matches[0]);
//方法四
preg_match_all("/<a.+?>check user</a>/is",$str,$arr);
//方法五
preg_match_all("/<a.+?>check user</a>/is",$str,$arr);
以上就是小編跟大家介紹的php獲取超鏈接文本內(nèi)容的正則表達式(五種方法),希望大家喜歡。