Home >Backend Development >PHP Tutorial > preg_replace替换a标签解决思路
preg_replace替换a标签
怎么写正则,要求a标签样式里出现display:none就把a标签替换成空
------解决方案--------------------
$s = 更多 <a href="http://" style="line-height:27px;color:#444547;margin-right:12px;display:none">更多</a> <a href="http://" style="line-height:27px;color:#444547;margin-right:12px;">更多</a> TXT; echo preg_replace('/<a>]*(?=display:none).+?/is','',$s); <div class="clear"> </div></a>