Hi Im having difficulty trying to do some renaming.
What im attempting is:
-Replace "S??e??" with "??x??" where ? are numerical characters.
-Replace all dots in a filename with a space
-Eliminate everything after "??x??"
For example:
This.is.my.show.S08E06.SDTV.XviD.-=b3k=-
to:
This Is My Show 08x06
At the moment I use Replace/With to replace the dots with a space and then to replace manually s01e with s01x, s02e with 02x etc
And then use Match Replace with:
(.*)(.x)(.?)(.?)(.*)
\1\2\3\4
to get rid of everything after ??x??
Any help (with a brief explanation if you have time!) would be much appreciated.
cheers