Normal
You can simply add a Replacement string to replace " - " with " " and process it before the Regular Expression rules are matched. Or you can use replace " - S" with " S" and therefore leaving the episode title " - " alone. There are very powerful combinations possible when you think it through.A crude way to solve your single episode problem, without getting into fancy Regular Expressions, would be to add 9 replace before strings, using "E1 " into "E01 " and do that for 1-9. The space at the end ensures that the existing double digit Episode filenames are left alone.To solve it via RegExp, check out: https://forum.team-mediaportal.com/my-tvseries-162/expressions-rules-exchange-21977/index2.html#post529460You will be amazed what searching the forums can do for you.
You can simply add a Replacement string to replace " - " with " " and process it before the Regular Expression rules are matched. Or you can use replace " - S" with " S" and therefore leaving the episode title " - " alone. There are very powerful combinations possible when you think it through.
A crude way to solve your single episode problem, without getting into fancy Regular Expressions, would be to add 9 replace before strings, using "E1 " into "E01 " and do that for 1-9. The space at the end ensures that the existing double digit Episode filenames are left alone.
To solve it via RegExp, check out: https://forum.team-mediaportal.com/my-tvseries-162/expressions-rules-exchange-21977/index2.html#post529460
You will be amazed what searching the forums can do for you.