Reply to thread

This regex supports e.g. X:\tv\The.Daily.Show.06.05.2008.DSR.XviD-0TV.[VTV].avi


(?<series>[a-z \.]*)(?<season>[0-9]{2})(\.|-)(?<episode>[0-9]{2})(\.|-)[0-9]{2}[a-z -\[\]]*\.(?<ext>[^.]*)


And this Regex supports


X:\The Daily Show\The.Daily.Show.06.05.2008.DSR.XviD-0TV.[VTV].avi


(?<series>[^\\\[]*)\\[a-z \.]*(?<season>[0-9]{2})(\.|-)(?<episode>[0-9]{2})(\.|-)[0-9]{2}[a-z -\[\]]*\.(?<ext>[^.]*)


So the episode needs to be in a folder with the series name


The date is parsed as season and episode so it won't be correct name or summary of the show, but it works


Top Bottom