-
Hey! Could you share examples of how to use the query for searching strings: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
hey @lezhnev74 , the search is RegEx capable, in the sense that it just puts everything in the search between So, for example, to search for 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 |
Beta Was this translation helpful? Give feedback.
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 writeA|B
.To search for
A AND B
, you could writeA.*B
(if A comes first), orB.*A
(if B comes first)To search for
A AND NOT B
, you could writeA.*(?!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