You are not logged in.
I need help to create a rule that removes all " . " from file name except for those before and after a set of letters. Sorry I'm sure there was a more eloquent way of saying that but... I have a list of TV shows and I want to remove all the " . ", but not the one before and after the episode Information, i.e. S##E##.
For example...
The.Show.Name.S04E29.The.Episode.Name
Should look like this...
The Show Title.S01E01.The Episode Name
This is for a large list of shows, no two titles or episodes are the same.
Thanks for the help.
Offline
You can replace all dots with spaces first, and then find all S##E## patterns and surround them with dots again.
1) Replace: Replace all "." with " " (skip extension)
2) RegEx: Replace expression "\s(S\d\dE\d\d)\s" with ".$1." (skip extension)
Input:
> The.Show.Name.S04E29.The.Episode.Name.avi
Output:
> The Show Name.S04E29.The Episode Name.avi
Offline
Wow I do not know why I didn't see that. Thank you
Offline
By the way thank you for such a fantasticlly useful application!!!
Offline