Project

General

Profile

Regular expression for autorecorder of entire series without reruns

Added by Claes Lindblom almost 11 years ago

Hi,
I need some help with a regular expression to record all episodes of a series but I want to exclude reruns that have a suffix string (R) in the title

My Favourite show => Yes, record
My Favourite show (R) => No, no recoring

I found a regular expression that seemed to work with paranthesis in it and when I saved it in tvheadend it became blank.


Replies (2)

RE: Regular expression for autorecorder of entire series without reruns - Added by Trond Michelsen almost 11 years ago

In this case, it should be simple enough. ^ means "beginning of string", while $ means "end of string". So:

^My Favourite show$

should match only the regular episodes in your case.

    (1-2/2)