-1

输入

<a href="http://mysite.com">My Site</a>
<a href="http://mysite.com/image.jpg"><img src="http://mysite.com/image.jpg"/></a>
    <a href="http://mysite.com/image.gif"><img src="http://mysite.com/image.gif"/></a>
<a href="http://yoursite.com">Your Site</a>

输出

<a href="http://mysite.com/image.jpg"><img src="http://mysite.com/image.jpg"/></a>
<a href="http://mysite.com/image.gif"><img src="http://mysite.com/image.gif"/></a>

感谢帮助

4

2 回答 2

1

I am not a PHP developer,but I can give you a javascript demo,hope it can give you some help :)

var reg=/<a\b[^>]*?href=\"((?!jpg|gif|png).)*?"[^>]*?>.*?<\/a>/gi;
yourstr=yourstr.replace(reg,'');
于 2013-06-29T16:32:04.620 回答
0

描述

这将跳过锚标记中的所有其他属性,即使它们的值看起来像嵌套在值中的属性。

<a(?=\s|>)                  # validate this is an anchor tag
(?!                         # start look ahead ! must not contain, = must contain
  (?:[^>=]|='[^']*'|="[^"]*"|=[^'"][^\s>]*)*?   # move through tag, skipping over quoted or non quoted values
  \shref="[^"]*(?:jpg|png|gif)"                 # find href, capture value including quotes if they exist
  )                             # end look ahead
[^>]*>.*?<\/a>                  # capture the entire to the close tag

在此处输入图像描述

PHP 代码示例:

示例文本

注意第二行

<a href="http://mysite.com">My Site</a>
<a wrongtag=" href='http://mysite.com/image.jpg' " href="http://mysite.com">My Site</a>
<a href="http://mysite.com/image.jpg"><img src="http://mysite.com/image.jpg"/></a>
    <a href="http://mysite.com/image.gif"><img src="http://mysite.com/image.gif"/></a>
<a href="http://yoursite.com">Your Site</a>

代码

<?php
$sourcestring="your source string";
echo preg_replace('/<a(?=\s|>)
(?!  # start look ahead ! must not contain, = must contain
(?:[^>=]|=\'[^\']*\'|="[^"]*"|=[^\'"][^\s>]*)*?  # move through tag, skipping over quoted or non quoted values
\shref="[^"]*(?:jpg|png|gif)"    # find href, capture value including quotes if they exist
)    # end look ahead
[^>]*>.*?<\/a>   # actually capture the string
/imsx','',$sourcestring);
?>

火柴

[0] => <a href="http://mysite.com/image.jpg"><img src="http://mysite.com/image.jpg"/></a>
[1] => <a href="http://mysite.com/image.gif"><img src="http://mysite.com/image.gif"/></a>
于 2013-06-29T22:47:55.653 回答