如何获取以http:// plus开头的所有链接

时间:2011-09-23 16:17:36

标签: php preg-match-all

我有一个pregmatch与以下搜索:

   $regexp = "<a\s[^>]*href=(\"??)([^\" >]*?)\\1[^>]*>(.*)<\/a>";

现在我如何重新格式化以寻找类似的东西:

href="http://plus  

我不希望改变整个事物,只是href的那部分。

由于

1 个答案:

答案 0 :(得分:0)

$regexp = "<a\s[^>]*href=(\"??)(http:\/\/plus[^\" >]*?)\\1[^>]*>(.*)<\/a>";