I am familiar with Perl regular expressions, but for the life of me, I can't manage to get them working with Transmission. Essentially, I want all torrents that look like Blah.SXXEXX.avi to slot into one category.
Code: Select all
/S\d{2}E\d{2}/
Code: Select all
"Blah.S03E04.avi".match(/S\d{2}E\d{2}/)
How would I use this in Transmission?