by Quade » Mon Feb 25, 2013 11:44 pm
I'd do: "My[.]Fav[.]files.*720p[.]rar"
Meaning it matches "My.Fav.Files<anything>720p.rar"
.* means anything. This is the easiest way.
Easiest way to test this is to type it into the "Find" box on a post list. It used the same mechanism.
You can do things like "S[0-9]E[0-9]"
"My[.]Fav[.]files.*S[1-9]E[0-9]{1,3}.*720p[.]rar"
E[0-9]{1,3} - matches "E0-E999"
You can be more precise later if you want to:
Then say you got season 1 already, you could set it to
"My[.]Fav[.]files.*S[2-9]E[0-9].*720p[.]rar"
You can make it even better with new RE's.
"[0-9][0-9]" Will match the number 00-99
[0-9] means "match a single number from 0 to 9. So, you can tweek it depending on what you're looking for.