我怎样才能重组这个 RSS 提要?

发布于 2024-07-21 06:05:13 字数 393 浏览 5 评论 0原文

我正在使用结构如下的 RSS 提要:

标题

string1
string2

我想以某种方式动态更改提要,使其看起来像这样:

Title

Title (string2)

基本上,我想将标题字符串向下移动到 RSS 项目描述中,位于 RSS 中的第二个字符串旁边物品。

现在提要非常标准,标题+描述,其中描述由两个字符串组成。 我正在尝试重新格式化它,以便它在 Twitter 中显示得更好。 我想将标题移到描述字段中,替换第一个字符串,同时保留第二个字符串。

抱歉,这太模糊了。 我认为雅虎管道可能能够帮助我实现这一目标,但我没有看到任何明显的工具可以让我重新安排这些元素的组成。

建议?

I'm working with an RSS feed structured like this:

Title

string1
string2

I'd like to somehow alter the feed on the fly so that it looks like this:

Title

Title (string2)

basically, I'd like to move the title string down into the RSS item description, next to second string in the RSS item.

Right now the feed is pretty standard, title + description, which the description consisting of two strings. I'm trying to reformat it so it displays better in Twitter. I'd like to move the title down into the description field, replacing the first string while keeping the second one around.

Sorry this is so vague. I thought Yahoo pipes might be able to get me there, but I'm not seeing any obvious tools that would let me rearrange the composition of these elements.

Suggestions?

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

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

发布评论

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

评论(1

苏璃陌 2024-07-28 06:05:13

我使用 RegEx 模块(不是过滤器!)来完成此操作。 它看起来像:

Rules
In |item.title|     replace |(.*)|     with |$1 (${item.string2})|

I do this with a RegEx module (not a filter!). It would look like:

Rules
In |item.title|     replace |(.*)|     with |$1 (${item.string2})|
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文