regexrssyahoo-pipes

Using Regex in Yahoo pipes to remove random numbers


I'm new to yahoo pipes, sorry if my question isn't that clear. I'm pulling an RSS Feed into Yahoo Pipes and trying to use Regex to remove/ delete the pattern which consists different random numbers like below.

Search

all 6 bad eggs »

all 39 bad eggs »

all 693 bad eggs »

all 6999 bad eggs »


Solution

  • all \d+ bad eggs? will remove all instances of (one or more) digits surrounded by "all " and " bad egg" (or "eggs").