[tw5] Re: Filtering tags by name

2019-11-04 Thread Ruslan Popov
Thank you Michael! Another difference seems to be that tag[] returns tiddlers, whereas tags[] does return tag names. So if I do [all[current]tags[]] I get current tiddler's tag names, whereas [all[current]tag[done]] returns the current tiddler itself (assuming it has a tag done]. -- You

[tw5] Re: Filtering tags by name

2019-11-04 Thread Ruslan Popov
This is very good, and works perfectly! Regexp is what I use a lot outside of TW, and was looking for ways to use it in TW. Thank you -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from

[tw5] Re: Filtering tags by name

2019-11-04 Thread A Gloom
Hello Ruslan According to documentation, the "tags" operator doesn't have parameters. > Yet in some examples I see it used like [tags[something]] - does it mean > parameters are passed to it? > the documentation says the tags operator doesn't take a parameter (tags[] also like with fields[]),

[tw5] Re: Filtering tags by name

2019-11-04 Thread Michael Wiktowy
On Monday, November 4, 2019 at 7:35:10 AM UTC-4, Ruslan Popov wrote: > > Hello, a newbie question. > > I would like to display a list of tags in a tiddler which match a certain > name pattern, for example all tags which contain the word "done", or > exclude certain tags by name.I am trying