RSS Episode filter doesn't work for Anime's Ep number style.

Discuss suggestions and ideas for the forums, site, software.
Post Reply
maruseru

RSS Episode filter doesn't work for Anime's Ep number style.

Post by maruseru »

the episode filter can't detect this episode number formatting: " - ##"
Image
ciaobaby

Re: RSS Episode filter doesn't work for Anime's Ep number style.

Post 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.
maruseru

Re: RSS Episode filter doesn't work for Anime's Ep number style.

Post 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 " - ##"
Post Reply