I have several tiddlers that are tagged with following tags
python oop
python json
python lectures
Which filter can I use to select all the tiddlers that have python in the tag?
When I use [tag[python]] it does not select anything, using [tag[python oop]] select only those that have the specific “python oop” tag. I want to do a partial match on the tags.
The first filter run finds all tiddlers. (Make this ‘tiddlers+shadows’ if you have shadow tiddlers also.) The filter filter run expression then looks at each tiddler, extracts the tags, and finds any with prefix python. If there is a result, then the original tiddler is output.
This will get all tags (cached operation), find the ones starting with “python” and then select all tiddlers with these tags.
Might be a bit faster for large wikis, though I haven’t checked.
Have a nice day
Yaisog