Page 3, 1st shared one: (?<series>[^\\$]+)(??:\\(?eason|Staffel|S[eé]ries?)?[ .-]?[0-2]?[0-9])?\\s?(?<season>[0-2]?[0-9])|\\(??eason|Staffel|S[eé]ries?)[ .-])?(?<season>[0-2]?[0-9])\\[^\\]*?)[ex]?(?<episode>\d\d+)(?:[ .+-]e?(?<episode2>\d\d+))?(?:[ -]+(?<title>(?![^\\]*?sample)[^$]*?))?\.(?<ext>[^.]*)$
Expresso INPUT = \House\Season 01\S01E02 - Hello - World.avi
Expresso RESULT (using same RegExp engine):
Match Number = 0
Match Text = "House\Season 01\S01E02 - Hello - World.avi"
series = "House"
season = "01"
episode = "02"
episode2 = ""
title = "Hello - World"
ext = "avi"
As in perfect match.
Expresso INPUT = \House\Season 01\S01E02-03 - Hello - World.avi
episode2 = "03"
So it is dual-episode compatible.
Next?
Happy to give it a go can you repost without the emoticons? I couldn't see it on page 3 (page numbers might change as I'm on mobile?)
Hi.
Here you go:
View attachment 160904
This is my configuration. When I deactivate the first 2 and activate the third (it's copy & paste from the exchange thread) I got not even a single match as in first screenshot I've posted.
BTW, I'm pretty sure, I know what's going wrong with the " - " in the episode title. If there are more than one separator like this, TVSeries takes the last one instead of the first one and interprets all between sxxExx and the next "e" in the episodes title as first episodes number and all between this second "E" and the second " - " as the second episodes number... Not what I would expect as imho an episodes number only should contain "0-9" and not all ACSII chars... This is a bug in my understanding.
Hi All,
My father has been using Media portal for many years and has been pushing me to start using it! I myself have been fine with using media centre
after playing with media portal and seeing what it can do amazes me!
Now, my problem is, how do I use the string replacements and parsing expressions? The other problem is Double Episodes
My Tv Show Scheme is as follows:
Single Episodes:
Videos > Tv Series > Arrow >Season 01> Arrow - SE01-E01 - Pilot.ext
Double Episodes:
Videos > Tv Series > Arrow >Season 01> Arrow - SE01-E01-E02 - Pilot, Honnor Thy Father.ext
Thanks and Regards,
Matt
(?<series>[^\\$]+)(?:(?:\\(?:Season?)?[ .-]?[0-9]{1,4})?\\s?(?<season>[0-2]?[0-9])|\\(?:(?:Season?)[ .-])?(?<season>[0-9]{1,4})\\[^\\]*?)(?:se\d+[ -.]?)?[ex](?<episode>\d\d+)(?:[ .+-]e?(?<episode2>\d\d+))?(?:[ -]+(?<title>[\w -.,'!&$][^$]*?))?\.(?<ext>[^.]*)$