Skip to content

Example of queries #212

Answered by arukompas
lezhnev74 asked this question in Q&A
Mar 10, 2023 · 1 comments · 3 replies
Discussion options

You must be logged in to vote

hey @lezhnev74 , the search is RegEx capable, in the sense that it just puts everything in the search between / and /i.

So, for example, to search for A OR B, you could just write A|B.
To search for A AND B, you could write A.*B (if A comes first), or B.*A (if B comes first)
To search for A AND NOT B, you could write A.*(?!B)

I'm not super savvy with RegEx, but at least now you know how the search works :) should definitely add this somewhere in the docs

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@lezhnev74
Comment options

@lezhnev74
Comment options

@arukompas
Comment options

Answer selected by lezhnev74
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants