How can I restructure this RSS feed?

I am working with an RSS feed structured like this:

Name

string1
string2

I would like to somehow change the stream on the fly so that it looks like this:

Name

Title (line2)

Basically, I would like to move the title line in the description of the RSS item next to the second line in the RSS item.

Right now, the feed is pretty standard, title + description, with a two-line description. I am trying to reformat it to display better on Twitter. I would like to move the title in the description field, replacing the first line while keeping the second.

Sorry, this is so vague. I thought Yahoo pipes might get me there, but I don't see any obvious tools that would allow me to change the composition of these elements.

Suggestions?

0


a source to share


1 answer


I am doing this with the RegEx module (not a filter!). It will look like this:



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

      

0


a source







All Articles