Case sensitive filters

5 posts / 0 new
Last post
ErikBrown
ErikBrown's picture

Hi,

I would like to create a filter that matches news with the text UT and not ut or Ut. I found in the release notes of QuiteRSS of several years ago that it should be possible to create case sensitive filters but I am unable to find out how to do it. Can anybody please let me know how to configure case sensitive filters.

Thanks in advance,
Erik

Sheldon
Hi

Hi

please try

^(?:(?![U][T]).)*$

and action

Mark news as read.

Kind regards,

Sheldon

ErikBrown
ErikBrown's picture
Thanks for the reply Sheldon.

Thanks for the reply Sheldon. I added ^(?:(?![U][T]).)*$ as a new filter and tried it but it failed to find a new article that actually had the text UT in it.

Sheldon
What about this?

What about this?

^(?:(?!.*UT.*).)*$

ErikBrown
ErikBrown's picture
Yes, that worked. Thanks!

Yes, that worked. Thanks!