【发布时间】:2014-05-23 02:11:09
【问题描述】:
我需要构建一个 Yahoo!复制 item.title 元素并将其添加到 item.link 元素末尾的管道。
示例输入:
<item>
<title>helloworld</title>
<link>http://www.example.com/abc</link>
</item>
<item>
<title>whatsup</title>
<link>http://www.example.com/def</link>
</item>
示例输出:
<item>
<title>helloworld</title>
<link>http://www.example.com/abc?helloworld</link>
</item>
<item>
<title>whatsup</title>
<link>http://www.example.com/def?whatsup</link>
</item>
【问题讨论】:
标签: regex rss yahoo-pipes