Added the ability to nest filter types with a logical "OR" or a logical "AND". Try these filters: (*NOTE* try this with and without the filter-match class applied), or
+
Added the ability to nest filter types with a logical "OR" or a logical "AND". Try these filters: (*NOTE* try this with and without the filter-match class applied), or
In v2.22.0
@@ -290,7 +290,7 @@ $(function(){
-
1
| or OR
Logical "or" (Vertical bar). Filter the column for content that matches text from either side of the bar (2).
box|bat (matches a column cell with either "box" or "bat"); (Find text that contains either "Alex" or "Peter");
+
1
| or OR
Logical "or" (Vertical bar). Filter the column for content that matches text from either side of the bar (2).
box|bat (matches a column cell with either "box" or "bat"); (Find text that contains either "Alex" or "Peter");
2
&& or AND
Logical "and". Filter the column for content that matches text from either side of the operator.
box && bat (matches a column cell that contains both "box" and "bat"), (Find text that contains both "br" and "c"), or (When "filter-match" is set, find content with the letter "a", but not the letter "o")
3
/\d/
Add any regex to the query to use in the query ("mig" flags can be included /\w/mig)
/b[aeiou]g/i (finds "bag", "beg", "BIG", "Bug", etc); (matches text that ends with an "r")
4
< <= >= >
Find alphabetical or numerical values less than or greater than or equal to the filtered query (1).