2014-04-30 32 views

回答

1

您可以使用正則表達式操作,通過使用${...}符號的替換模式是指其他領域結合兩個領域。

例如,如果你想用pubDatelink字段的組合來代替title場,你可以設置參數如下:

  • 在:item.title
  • 取代:.*
  • 附:${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