QuiteRSS / quiterss

Free news feeds reader
https://quiterss.org
Other
1.01k stars 125 forks source link

Feature Request • Boolean Search Operators #1418

Open touwys opened 3 years ago

touwys commented 3 years ago

Thank you for QuiteRSS, it is an outstanding newsreader.

If you will, please add simple Boolean Search Operators to the QuiteRSS search function.

Thank you.

Examples:

m-dp commented 3 years ago

Yes, I also wanted to request operators in search.

Anyway, @touwys, note that the search is a SQL query, so you already have the relevant 'LIKE' operator wildcards: % (percent) for "any string of chars" (e.g. "gold%ball" → "a golden retriever catching a ball") and _ (underscore) for "any single char" (e.g. "t_st" → "a test"; "the hottest"; "a tasty bit"; "yes but still")

touwys commented 3 years ago

@m-dp

Thanks for the very helpful tips; I did not know that.