Page 1 of 1
RSS Episode filter doesn't work for Anime's Ep number style.
Posted: Fri Aug 07, 2015 11:15 pm
by maruseru
the episode filter can't detect this episode number formatting: " - ##"

Re: RSS Episode filter doesn't work for Anime's Ep number style.
Posted: Sat Aug 08, 2015 1:15 pm
by ciaobaby
Assuming " - ##" means -01, -02 etc., why would it?
A '-' and a 'x' are different characters. Also *1... would only match 01x, 11x, 21x and so on.
Use regular expressions if you are not sure what the separator will be,
[0-9]+[EeXx\-]{1}[0-9]{1,2}
will match one or more numberals followed by '-', 'e', 'E', 'x' or 'X' followed by one or two numerals.
Re: RSS Episode filter doesn't work for Anime's Ep number style.
Posted: Sat Aug 08, 2015 4:30 pm
by maruseru
no it means " - 01, - 02" and it's clearly an episode system that can be detected by the episode filter. The regex would detect the episodes, but will the episode filter work with regex? my problem is not regex or matching the number, my problem is the episode filter not detecting episode numbers that have this particular structure.
I know 1x1 isn't " - 01" but 1x1 also isn't "s01e01" for that to happen the filter has to detect "s##e##" and make the conversion right? all I'm saying, it doesn't happen when it's " - ##"