I'm pulling a feed from GMA, don't ask why. I'm using yahoo pipes because I can filter out certain articles based on their title. Then I run the feed through feedenlarger.com so I can get the full text pretty easily.
The problem I'm having is that the feeds contain bold links in them that are disrupting the articles. Each one is surrounded by a <strong>....</strong>
. I am trying to just delete any content that exists between the <strong></strong>
, but I can't seem to get it right.
I have tried:
item.description replace <strong>*?</strong>
with (and left blank)
as well as
item.description replace <strong>*?</strong>
with (also left blank)
I know regex and html are not meant for one another, but if someone has a suggestion or direction, I'd appreciate it very much.
Thanks