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.
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.
Ah, thank you. That was easy