如何使用雅虎管道从 RSS feed 中提取电子邮件 ID
我正在使用来自 Craigslist 的 rss feed,使用 yahoo Pipes,工作正常。获取提要后,我只想从提要中提取电子邮件 ID。有人可以指导我吗?
I am using a rss feed from Craigslist using yahoo pipes which is working fine. After getting the feed i just want to extract email id from the feed . Can anyone please guide me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我链接到你的管道会很有用。无论如何,使用重命名模块创建包含“电子邮件”节点的电子邮件地址的任何节点的副本。现在使用正则表达式模块来实现
在 items.email 中,将 ^.*\s([a-zA-Z0-9._]*?@[a-zA-Z0-9._]?)\s.$ 替换为1 美元
这应该可以正常工作
I Link to your pipe would have been useful. Anyways, using rename module create a copy of whatever node that contains the email address to a node say "email". Now use a regex module to effect
In items.email replace ^.*\s([a-zA-Z0-9._]*?@[a-zA-Z0-9._]?)\s.$ with $1
this should work fine