I want to use this filter [field:catégorie<currentTiddler>] in a tiddler named A.
Tiddlers have a catégorie field but with multiple titles in it A B C [[D and D]].
So this filter doesn’t find anything.
How to list tiddlers that have at least A in their catégorie field ?
In this kind of situation I’m always struggling to find how to build a suitable filtrer.
(I wish that powersearch of @EricShulman had contains in his FilterMaker…)
You seem to already know the answer! Just use the contains operator instead of field, like this:
[contains:catégorie<currentTiddler>]
-e
sometimes the obvious is so hard to find…
Quoting myself from a while back:
It does now! Get the latest update here: TiddlyTools/Search/Filters
enjoy,
-e
Just for completeness (and weighing in at one fewer keystroke!),
[<currentTiddler>listed[catégorie]] yields same as
[contains:catégorie<currentTiddler>], yes?
Any reason to choose one or the other?