The above runs the RegEx() to capture the 1 or 2 episode numbers, and outputs the string as you want. It has to test for a possible empty second series value to skip outputting a useless dash after the first episode.
^ | Match from beginning of string (your [Episode]) |
(\d+) | match 1 or more digits, and remember them - capture 1 |
(?: | start of a cloister group |
(\d+) | match 1 or more digits, and remember them - capture 2 |
) | end of the cloister group |
? | The previous atom (here, the cloister group) is optional |
$ | Match must now be at end of string |
[Woops I'm sorry I directed my thanks to EpF and not MrC in my last post as I was reading a post on another thread. I'm a bit scatterbrained this morning! - post amended]
Thanks so much for that MrC. This works flawlessly.
I think I'm starting to wrap my head around the language a bit better. There's a lot of flexibility here with a bit of time investment!
MC has made some great steps with automating import, processing metadata and renaming and moving the files.
*Now moves on to music*