从 RSS 源中过滤或删除 item.description
我想删除 yahoo 管道中 twitter feed 的 item.description 部分,但我还没有弄清楚如何做到这一点。
显然,过滤器模块将删除包含该项目的帖子,因此我一直在尝试使用正则表达式。 我认为清除 item.description 字段就足够了。 是否有一个正则表达式可以替换整个字符串?
基本上,目标是制作一篇仅显示标题和发布日期的 Twitter 帖子。 基本上,item.description 字段会产生冗余信息。
可以在此处找到该管道的副本。
I would like to remove the item.description part of a twitter feed within yahoo pipes and I haven't figured out how to do it yet.
Obviously the filter module will remove posts with that item so I've been trying to use Regex. I think clearing the item.description field would work well enough. Is there a Regex expression that would replace the entire string?
Basically the goal is to make a twitter post that displays only the title and publish date. Basically, the item.description field is producing redundant information.
A copy of the pipe can be found here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
理想情况下,您希望使用 XSLT 来执行此操作 - 类似这样:
但由于您使用的是管道,请尝试以下正则表达式:
如下:
作为替换字符串。
Ideally you would want to use an XSLT to do this - something like this:
But since you are using Pipes, try this regular expression:
with this:
as a replacement string.
要完全删除描述节点,请在输出之前添加以下内容:
To completely remove the description node, add this right before the output: