在 Yahoo Pipes 中排除 Twitter 用户名

发布于 2024-12-04 02:29:24 字数 801 浏览 1 评论 0原文

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

使用获取站点源 - 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 帐户这些规则。

推文如下 - “HomesinCypress:80 口畅游世界布里奇兰。品酒和样板房之旅。19006 年 9 月 8 日 4-7 日,Cypress Cove Springs 281-543-4947。”

所以,这就是我试图弄清楚该怎么做...

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

I'd like to automatically tweet a tweet from one user account based on a keyword from another twitter account. For example, here's what I currently have set up in Pipes:

Using Fetch Site Feed - http://twitter.com/homesincypress

Filter - Permit items that match ANY of the following...

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

Filter - Block items that match ANY of the following...

item.title > Matches regex - RT.*RT

Output to another Twitter account by grabbing RSS from Pipes output, and using TwitterFeed to update the other Twitter account with those rules.

Tweet looks like this - "HomesinCypress: Bridgelands Around the World in 80 sips. Wine Tasting and Model Home tour. Sept. 8 4-7, 19006 Cove Springs, Cypress 281-543-4947."

So, here's what I'm trying to figure out how to do...

How do I construct the rule in Pipes to where HomesinCypress: is excluded from the tweets?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

歌入人心 2024-12-11 02:29:24

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

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

这样您就可以修改任何其他推文提要,而不仅仅是赛普拉斯之家之一

Use regex module as below.

In item.title (or whatever it is) replace ^.*?:\s? with <blank>

This way you can modify any other tweeter feed, not just one of HomesinCypress

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文