I have names like this :
\\SRV\Share\TVS\My Super Tv Show\Season 11\S11E12 - some title.jpg
\\SRV\Share\TVS\My Super Tv Show\Season 11\12-sometitle.png
\\SRV\Share\TVS\My Super Tv Show\S11E12 -some title.fdf
\\SRV\Share\TVS\My Super Tv Show\Season 11-E12 - Some title.fdgfg
\\SRV\Share\TVS\My Super Tv Show\Season 11 Ep12 - Some Title.jpeg
\\SRV\Share\TVS\My Super Tv Show\11x12 - Some Title.jpeg
I need to retrieve My Super Tv Show, season number and episode number.
I tried many regex, last is :
.+\\.+\\(?<TvShow>.+?)[. -\\]+?((Season (?<Season>\d+)\\[sS]\d+[eE])|([sS](eason )?(?<Season>\d+)[. -]*[eE]?p?[. -\\]*)|((?<Season>\d+)[xX]))(?<Episode>\d+)
it does not recover the tv show name from the first name, and gets only 2 instead of 12 for episode number (except for the last name)
Any help would be greatly appreciate :)

