排除Yahoo Pipes中的Twitter用户名

时间:2011-09-10 16:07:10

标签: regex twitter yahoo-pipes tweets

我想根据另一个Twitter帐户中的关键字从一个用户帐户自动发推文。例如,这是我目前在Pipes中设置的内容:

使用抓取网站Feed - http://twitter.com/homesincypress

过滤 - 允许与以下任何内容匹配的项目......

item.title > Contains #bridgelands
item.title > Contains #bridgeland
item.title > Contains bridgeland
item.title > Contains bridgelands

过滤 - 阻止符合以下任何内容的项目......

item.title > Matches regex - RT.*RT

通过从Pipes输出中获取RSS并使用TwitterFeed更新其他Twitter帐户来输出到另一个Twitter帐户。

Tweet看起来像这样 - “ HomesinCypress :世界各地的Bridgelands 80啜饮。品酒和模型之家巡回演出。9月8日,8日,9月6日,Cove Springs,Cypress 281-543-4947 。“

所以,这就是我想弄清楚怎么做......

如何在Pipes中构建规则,将 HomesinCypress:从推文中排除?

2 个答案:

答案 0 :(得分:0)

如果您查看Regex and Yahoo Pipes: How to replace end of url然后根据需要进行修改:通过查找 ?[HomesinCypress:]并将其替换为空。

说实话,我对管道并不太熟悉,但这应该排除它的正则表达式部分。

答案 1 :(得分:0)

使用如下的正则表达式模块。

在item.title(或其他任何内容)中,将 ^。*?:\ s?替换为< blank>

这样您就可以修改任何其他tweeter Feed,而不仅仅是HomesinCypress

之一