Skip to content

Commit

Permalink
docs: add more text filter demos with built-in operators
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding authored Jun 12, 2024
1 parent c95a33d commit 0df258c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/column-functionalities/filters/input-filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ Example:
- `<02/28/17` => smaller than date `02/28/17`
- `2001-01-01..2002-02-22` => between 2001-01-01 and 2002-02-22
- String type
- `<>John` => does not contain the sub-string `John`
- `!=John` => not equal to the string `John` (note that this is not equivalent to `<>`)
- `<>John` => not containing the sub-string `John`
- `!=John` => not equal to the text `John` (note that this is **not** equivalent to `<>`)
- `John*` => starts with the sub-string `John`
- `*Doe` => ends with the sub-string `Doe`
- `ab..ef` => anything included between "af" and "ef"
- refer to the ASCII table for each character assigned index
- `!= ` => returns defined data while excluding `undefined`, `null` and empty string `''`
- notice the empty string in the search value
- `!= ` => get defined only data and exclude any `undefined`, `null` or empty string `''`
- notice the empty string in the search value `' '`

Note that you could do the same functionality with a Compound Filter.

Expand Down

0 comments on commit 0df258c

Please sign in to comment.