+ Reply to Thread
Results 1 to 5 of 5

Thread: RSS RegEx for everyday shows

  1. #1

    Join Date
    24.07.07
    P2P Client
    Vuze 4.3.0.5_B01 SB-Innovation Hack
    Posts
    156
    Activity Longevity
    0/20 20/20
    Today Posts
    0/5 ssssss156

    RSS RegEx for everyday shows

    what are some regex strings for shows that come on every night, like talk shows and the daily show. these shows usually have the date of the show in their names, but no S01Exx, so there's no smart history with dated shows.

    it's more like,

    The.Daily.Show.2010.03.23.HDTV.XviD-group

    how do i set up a regex string so that it downloads every show after a date and not download duplicates? for example, i want to download every show that is released after 2010.03.23 and not download previous shows before that date.

    thanks!
    Reply With QuoteReply With Quote
    Thanks

  2. Who Said Thanks:

    saebrtooth (24.03.10)

  3. #2
    Advanced User saebrtooth's Avatar
    Join Date
    21.06.09
    Location
    somewhere?
    P2P Client
    An eMule & VEM
    Posts
    2,150
    Activity Longevity
    0/20 18/20
    Today Posts
    0/5 sssss2150
    dont ban me just spank me
    Reply With QuoteReply With Quote
    Thanks

  4. Who Said Thanks:

    hontoCorti (24.03.10)

  5. #3
    I can give you some Links on how to learn regular expressions...

    Regular Expression Tutorial - Learn How to Use Regular Expressions
    Regular Expression HOWTO

    The regex coach is a nice tool to test regular expressions and experiment with them.

    The Regex Coach - interactive regular expressions

    Btw what tool do you use to interact with the RSS and the torrent downloading?
    And a regex can be used there? Sounds very interesting!
    I gonna read the link above, thx saebrtooth

    If you have questions regarding the regex stuff just ask...
    I know some basic stuff, but i think for that kind of task it should be enough...
    Btw you can find it all in the Tutorials above.

    There are like 3 rss plugins for rtorrent, will check that out:)
    For example http://code.google.com/p/rssdler, it is compatible not only with rtorrent but with every torrent client that has something like a watch directory, and it supports regex.

    Rgrds, honto
    Last edited by hontoCorti; 24.03.10 at 11:37.
    Reply With QuoteReply With Quote
    Thanks

  6. #4

    Join Date
    24.07.07
    P2P Client
    Vuze 4.3.0.5_B01 SB-Innovation Hack
    Posts
    156
    Activity Longevity
    0/20 20/20
    Today Posts
    0/5 ssssss156
    i knew the basics of regex and thanks for the links and the regex coach app. now i just need some help with the day in the syntax. for example, let's say i wanted to only download for the days of 23-31.

    The.Daily.Show.2010.03.23.HDTV.XviD-group

    The.Daily.Show.(\d...).(\d.).(\d.).HDTV.

    if i use ^this syntax it downloads every show. if i use this,

    The.Daily.Show.(\d...).(\d.).(23-31).hdtv

    it doesn't match. just need some help figuring out to download certain days rather than every day.

    thanks!

    btw, i use vuze extreme mod and rss feed scanner.
    Last edited by A-Day; 24.03.10 at 16:38.
    Reply With QuoteReply With Quote
    Thanks

  7. #5
    You can either use The.Daily.Show.2010.03.(23|31).HDTV.

    That matches the Days 23 OR 31...
    You can add another day by just adding |numer in the round brackets.


    The more advanced stuff:
    The.Daily.Show.2010.03.((2[3-9])|(3[0-1])).HDTV.

    This matches the days 23 - 31...

    You can do the same for month or year...
    The round brackets do the grouping... - you can't do ranges with round brackets
    The square brackets define a character range...

    Regards, honto
    Last edited by hontoCorti; 25.03.10 at 15:55.
    Reply With QuoteReply With Quote
    Thanks

+ Reply to Thread

Tags for this Thread

Posting Permissions

  • You may post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts
  •