Normal
Ok I finally took the time to look the show up at thetvdb.com and the title is "Once Upon a Time... Life", so put in a string replacement for that, and make sure it runs "before". Also I just noticed your filename format isn't right for season+title, because you are using the xx out of yy format.So use string replacements before:"of26." with " - "".Xvid.MP3.en.de.fr.es.mvgroup.org" with "<empty>""Once.upon.a.time...Life." with "Once Upon A Time... Life S01E"and you don't even require an extra regular expression then, because the default ones will work.The above will turn: Once.upon.a.time...Life.02of26.Birth.Xvid.MP3.en.de.fr.es.mvgroup.org.aviinto: Once Upon A Time... Life S01E02 - Birth.aviAnd that should guarantee a working match.
Ok I finally took the time to look the show up at thetvdb.com and the title is "Once Upon a Time... Life", so put in a string replacement for that, and make sure it runs "before". Also I just noticed your filename format isn't right for season+title, because you are using the xx out of yy format.
So use string replacements before:
and you don't even require an extra regular expression then, because the default ones will work.
The above will turn: Once.upon.a.time...Life.02of26.Birth.Xvid.MP3.en.de.fr.es.mvgroup.org.avi
into: Once Upon A Time... Life S01E02 - Birth.avi
And that should guarantee a working match.