-1

我正在使用 yahoo 管道从我的 WordPress.com 博客中获取与特定类别匹配的内容。一切正常,但 WordPress 在我想删除的提要底部添加了“共享”链接。

这是正在添加的内容:

<a rel="nofollow" target="_blank" href="http://feeds.wordpress.com/1.0/gocomments/bandonrandon.wordpress.com/87/">
    <img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bandonrandon.wordpress.com/87/"/></a>
    <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bandonrandon.wordpress.com&blog=1046814&post=87&subd=bandonrandon&ref=&feed=1" width="1" height="1"/>

我编辑了一些服务,但你明白了。我尝试使用正则表达式删除此内容我尝试的是:

<a rel="nofollow" target="_blank" href="http://feeds.wordpress.com/.*?><img alt="" border="0" src="http://feeds.wordpress.com.*?></a>

<img alt="" border="0" src="http://stats.wordpress.com.*?>

但是它根本没有过滤结果。使用它会过滤所有图像并且工作正常

<a.*?><img.*?></a>
4

1 回答 1

1
<a[^>]+href="http://feeds.wordpress.com[^"]*"[^>]*>\s*<img[^>]+src="http://feeds.wordpress.com/[^"]*"[^>]*>\s*</a>\s*<img[^>]+src="http://stats.wordpress.com/[^"]*"[^>]*>

正则表达式已更新,尝试匹配全部内容。

于 2010-09-01T10:02:19.657 回答