echo preg_replace("/(?]*)(?=\>)/i","#", "你好,点这里看看你好,点这里看看");
?>
正则:/(?]*)(?=\>)/
(?(?=exp) 匹配exp前面的位置
此正则 匹配 在 href= 之后 “>” 之前 的 非 “>” 的所有字符
例子:
找到这些字符(url)用 # 替换,就可以去掉html里的所有链接。
http://www.bkjia.com/PHPjc/320070.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/320070.htmlTechArticle?php echo preg_replace("/(?=href=)([^\]*)(?=\)/i","#", "a href='www.csdn.net'你好,点这里看看/aa href='www.jb51.net'你好,点这里看看/a"); ? 正则:/(?=href=)([^\]*...