
RSS Episode filter doesn't work for Anime's Ep number style.
RSS Episode filter doesn't work for Anime's Ep number style.
the episode filter can't detect this episode number formatting: " - ##"


Re: RSS Episode filter doesn't work for Anime's Ep number style.
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.
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.
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 " - ##"
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 " - ##"