Reply to thread

the following works for rar files (part01 part001, ignores the rest)


[code](?<series>.+)\.s(?<season>[0-9]+)e(?<episode>[0-9]+).+?\\.+(?:(?<!part\d\d\d|part\d\d)\.rar|\.part0*1\.rar)[/code]

[code](?<series>.+)\.(?<season>[0-9]+)x(?<episode>[0-9]+).+?\\.+(?:(?<!part\d\d\d|part\d\d)\.rar|\.part0*1\.rar)[/code]


your other expressions if enabled will pick up the part02+ part002+ rar files most likely.  to fix that, the end part (?<ext>[^.]*) must be fixed.



try (?<ext>(?i:avi|mkv|ogm|wmv|anything_but_rar))


Top Bottom