Hey Sean, To be *extra safe*, you can use something like this:
''Going to delete the following tiddlers:'' <br/> <$list filter="[!is[system]regexp[^Formatting List]]" variable="tidToDelete" > * <<tidToDelete>> <br/> </$list> !! ''If you are sure'' Copy/paste the filter above into this button: <$button> Delete these tiddlers! <$list filter="PLACE_FILTER_HERE" variable="tidToDelete"> <$action-deletetiddler $tiddler=<<tidToDelete>>/> </$list> </$button> This makes use of the regexp operator: https://tiddlywiki.com/#regexp%20Operator If you copy/paste the code I placed above into a new tiddler on tiddlywiki.com you can see that it will delete all Tiddlers whose title *start* (thats the ^ character means) with "Formatting List". It prints those titles out to make *sure* you are going to catch *only* the right ones. If you're happy, you can copy/paste the filter into the button where Ive indicated and then press it to delete them. For your use case, you can change the filter to be something like: "[!is[system]regexp[^week of]]" But *make sure* before you place this in the button filter! Diego On Wednesday, February 7, 2018 at 12:41:31 PM UTC-6, Sean Boisen wrote: > > I've been using TiddlyWiki for weekly planning for some time, so I've got > lots of tiddlers with titles like "week of 2014/01/06" that are no longer > relevant. It takes multiple clicks to delete them one by one, which is a > pain for dozens of obsolete tiddlers. I don't have tags on them. How can I > > 1. Create a list of tiddlers whose titles match some string (simple > equality, or even better, regex) > 2. Delete them as a batch > > ? > -- 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 https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/2f215d7f-d08b-4fbb-a28f-23d4352da45e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

