PDA

View Full Version : RSS feed Regex help.



knight76
06-02-2013, 01:12 PM
Hi all.

I'm attempting to grab a tv series and have never used RSS feeds previously to grab a release.

What I want to do is grab Game Of Thrones releases from a specific group.

The string I have put together thus far is: /^Game.Of.Thrones.S03E[09-10].+Evolve.+/i

I have been baking my brain for the last two hours reading about regex and how it works and I think this will get game of thrones season 3 episodes 9 and 10 from release group evolve and all it's iterations. IE 720p and 1080p.

To make it just get 1080p do I just add another .+1080p.+ in their?

Will this string work at all or is it faulty? First time user of these so looking to make sure it will work.

Thanks for any help.

anon
06-02-2013, 04:28 PM
You can test your regexps against a string to see if you get the desired matches using this (http://regexpal.com/). If you can't get yours to work, let me know and I'll see if I can fix it.