On Saturday, October 26, 2013 5:15:42 PM UTC-7, [email protected] wrote:
> Well, yes, how about excluding tags with spaces? > Or tags that are all lowercase? Ot tags that begin with lowercase and > have only one upper case letter? > "systemConfig" is an example of the latter; so is 'excludeLists". > http://www.TiddlyTools.com/#MatchTagsPlugin extends the core "tag filter" syntax so that you can use full Boolean expressions (AND, OR, NOT) for matching complex combinations of tag values. You can also use regular expressions for to define *patterns* for testing specific tag values. For example, you can match all tags except the TWCore 'systemConfig' and 'exclude....' tags, like this: <<matchTags inline "[[%0]]" "\n" NOT (systemConfig OR exclude[A-Z].*)>> or, similar to your suggestion, using the more general pattern "starting with lowercase and containing at least one upper case", like this: <<matchTags inline "[[%0]]" "\n" NOT [a-z].*[A-Z].*>> enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"... http://www.TiddlyTools.com/#Donations Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/groups/opt_out.

