-
Notifications
You must be signed in to change notification settings - Fork 102
Filters and Queries
Duarte Ramos edited this page Sep 30, 2021
·
3 revisions
Filters are used extensively throughout Tablacus addons configurations, to specify which actions are taken when and where.
-
*
- Stands for any number of characters -
?
- Stands for a single character -
;
- List separator, used to separate multiple items with - Case insensitive
AB
yields the same results asab
-
Photo_?
- MatchesPhoto_0
,Photo_1
,Photo_2
andPhoto_A
, bot notPhoto
orPhoto10
-
Photo_*
- MatchesPhoto_0
,Photo_1
,Photo_200
andPhoto_Vacations
, bot notPhotos
orPhotoVacation
-
Photo_?;Photo_*
- Matches any of the above - Local and network file folders
?:\*;\\*
Special folders are represented by a number
- Computer
17
- Recycle Bin
10
Query result list is represented as query:
- History
history:
- Windows Search result list
search-ms:*
Regular Expression
- Surrounded by
/
- Case sensitive, unless
i
is appended
-
/^C/
match item name starting withC
-
/^C/i
match item name starting withC
orc
-
/tab/
match item name containingtab
- For Filter bar and Filter button: If you opt for
Regular Expression/Migemo
, you can omit the surrounding/
- Regular expression is not available to Find Files and Label add-ons.