在雅虎管道中,我如何组合2个字段?

时间:2014-04-30 21:12:04

标签: yahoo-pipes

我正在尝试修改rss字段的标题以包含来自其他字段的文本。如何将这两个字段组合在一起构成一个新字段? 谢谢, CP

1 个答案:

答案 0 :(得分:1)

您可以使用正则表达式运算符组合两个字段,在替换模式中使用${...}表示法来引用其他字段。

例如,如果您想将title字段替换为pubDatelink字段的组合,则可以设置如下参数:

  • 在: item.title
  • 替换: .*
  • with: ${pubDate} - ${link}

替换参数中,我使用.*来匹配item.title的整个内容,而使用 ${pubDate}将会是已替换为item.pubDate${link}的内容,其内容为item.link

更多示例和屏幕截图:

replacing a field with the combination of other fields

如果您想使用其他人的组合创建新字段:

creating a new field with the combination of other fields

如果您想在现有字段前添加内容:

prepending another field to an existing field