php获取超链接文本内容的几款正则表达式

  1. //方法一,代码如下:
  2. preg_match_all('/<(a|a)[s]{0,1}[w=":()]*>[ ]*(check user)[ ]*</(a|a)>/i',$string,$matches);
  3. //方法二,代码如下:
  4. preg_match_all('/<a[dd]*>check user</a>/i',$string,$matches);
  5. print_r($matches[0]);//开源代码phpfensi.com
  6. //方法三,代码如下:
  7. preg_match_all('/<a[^>]*>[^<]*</a>/i',$string,$matches);
  8. print_r($matches[0]);
  9. //方法四,代码如下:
  10. preg_match_all('/<a.+?>check user</a>/is',$str,$arr);