Changes between Version 6 and Version 7 of Plugins/YaRSS2


Ignore:
Timestamp:
04/10/2012 09:56:10 AM (12 years ago)
Author:
bro
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Plugins/YaRSS2

    v6 v7  
    5151||Regex||Comment|| 
    5252||.||any character|| 
    53 ||*||zero or more of the previous|| 
     53||*||zero or more of the previous expression|| 
     54||+||one or more of the previous expression|| 
    5455||.*||zero or more of any character|| 
    55 ||(a|b)|| a or b|| 
     56||\d||any number 0-9 (Only one character)|| 
     57||\d!{2}||Exactly two numbers|| 
     58||\d!{1,2}||One or two|| 
     59||(720p|1080p)|| '''720p''' or '''1080p'''|| 
    5660 
    5761Example  
    5862 * Title1: "My Favourite Series some-random-characters.720p.GROUP" 
    5963 * Title2: "My.Favourite.Series.some-random-characters.1080p.GROUP" 
    60  * Title3: "My.Favourite.Series.S1E{01-24}.1080p.GROUP" (where {01-24} is the numbers from 01 to 24) 
     64 * Title3: "My.Favourite.Series.S1E04.1080p.GROUP" 
     65 * Title4: "My.Favourite.Series.S1E1.1080p.GROUP" 
    6166 
    6267||Regex||Comment|| 
    6368||My Favourite Series|| Matches Title1|| 
    64 ||My.Favourite.Series|| Matches all three|| 
     69||My.Favourite.Series|| Matches all|| 
    6570||My.Favourite.Series.*720p|| Matches Title1|| 
    66 ||My.Favourite.Series.*(720p|1080p)|| Matches all three|| 
    67 ||My.Favourite.Series.S01E\d!{2}*1080p|| Matches Title3|| 
     71||My.Favourite.Series.*(720p|1080p)|| Matches all|| 
     72||My.Favourite.Series.S01E\d!{2}*1080p|| Matches Title3 (as well as any episode 00-99)|| 
     73||My.Favourite.Series.S01E\d{1,2}.*1080p|| Matches Title3 and Title4||