> > Mat: the first thing the TW docs should answer, i.e "How to reformat > regexps so they can be used in TW" >
You can't use regex "character classes" directly in the operator as the string contains the "TW reserved characters" *"[...]" *it needs itself. You have to "pass-in" anything regex in square brackets via a variable. See: https://tiddlywiki.com/#regexp%20Operator%20(Examples) Basically like this ... <$set name="digit-pattern" value="[0-9]{2}"> <<list-links "[regexp:title<digit-pattern>]">> </$set> TT -- 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 view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/c457a041-ad1f-4e12-a0b2-2d75a8496faa%40googlegroups.com.

