Filter Data with Wildcards
- Last UpdatedOct 29, 2024
- 1 minute read
You can use wildcards to filter the reporting data results according to specified criteria. Use one or more of the following wildcards.
|
Wildcard |
Function and Example |
|---|---|
|
% |
Any string of zero or more characters. Example: M% Matches all values starting with M followed by any character sequence. |
|
_ (underscore) |
Any single character. Example: M_B Matches all values starting with M followed by any character followed by B. |
|
[ ] |
Any single character within the specified range. Example: M[a-z] Matches all values starting with M followed by any single lowercase character. |
|
[^] |
Any single character not within the specified range. Example: M[^a] Matches values starting with M followed by any single character that is not a. |