请仅在 rel="external nofollow" 时帮助使用正则表达式从标签中提取 href
<a href="text.html" rel="external nofollow">text1:text2:text3/</a>
只需要作为结果得到
text1:text2:text3
然后尝试
$regexp = '<a (?![^>]*?rel="external nofollow")[^>]*?href="(.*?)"';
我收到错误
Warning: preg_match() [function.preg-match]: Unknown modifier ']' in /