I posted this in my skin channel too. If that's against a rule or something, let me know.
Anyway, I am trying to get my tv shows (from DVD) to import correctly, but can't seem to get it to work right. My directory structure is:
TV\SHOW\SEASON\EPNUM - EPTITLE.mkv
(e.g. TV\ANGEL\SEASON 01\S01 E01 - CITY OF.mkv)
I would like it to import as:
TV\<series>\<season>\<epnumber> - <name>
This gets me most of the way there:
\\(?<Series>.*)\\Season\s(?<Season>\d*)\\.(?<EpNum>\d*)\s-\s(?<Name>.*)\. *
\\(?<Series>.*)\\Season(?<Season>\d*)\\.(?<EpNum>\d*)\s-\s(?<Name>.*)\. *
\\(?<Series>.*)\\(?<Season>.*)\\(?<Name>.*)\. *
I just can't get it to parse the "S01 E01" to <epnumber>. Instead it returns "S01 E01 - CITY OF" as <name> and doesn't even create a <epnumber> or value for it.
Any help is appreciated.