使用yahoo管道从wordpress.com提要中删除内容

时间:2010-09-01 03:36:16

标签: regex rss yahoo-pipes

我正在使用雅虎管道从我的WordPress.com博客获取与certian类别匹配的内容。一切正常,但WordPress将“共享”链接添加到我想删除的Feed的底部。

以下是补充内容:

<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>

1 个答案:

答案 0 :(得分:1)

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

正则表达式更新,尝试匹配整个批次。