-
Notifications
You must be signed in to change notification settings - Fork 0
Searching
Rafael Fassi Lobão edited this page Mar 12, 2022
·
1 revision
The search allows multi-parameters where the parameters can be combined by AND
or OR
operators.
Each parameter can:
- Have the search expression as SubString, Regex or Range.
- Be limited to a specific column.
- Use the negation operator.
Searches by the provided sub string.
The search can be configured as case sensitive or insensitive.
Searches by the provided pattern that must be a perl-like regular expression (PCRE).
The search can be configured as case sensitive or insensitive.
The range expression must be provided in the format: <From> -> <To>
as follow:
28-12-2021 18:00:00.0 -> 28-12-2021 19:00:00.0
Either <From>
or <To>
can be omitted for open intervals.
Example:
To see everything after 28-12-2021 18:00:00.0 the expression can be either:
28-12-2021 18:00:00.0 ->
or
28-12-2021 18:00:00.0
To see everything before 28-12-2021 19:00:00.0:
-> 28-12-2021 19:00:00.0
If the merging option is selected, the result of new searches will be merged to the previous ones.