On Wednesday, October 8, 2014 10:32:06 AM UTC+2, Stephan Hradek wrote: > > Does this example help? > > <$list filter="[is[current]tags[]regexp[^\d+:\w\w\w\s\d\d:\d\d$]]"> > <$view field="title"/> > </$list> > > > A human readable description for Stephans regexp :)
// ^\d+:\w\w\w\s\d\d:\d\d$ // // Options: case insensitive // // Assert position at the beginning of the string «^» // Match a single digit 0..9 «\d+» // Between one and unlimited times, as many times as possible, giving back as needed (greedy) «+» // Match the character “:” literally «:» // Match a single character that is a “word character” (letters, digits, and underscores) «\w» // Match a single character that is a “word character” (letters, digits, and underscores) «\w» // Match a single character that is a “word character” (letters, digits, and underscores) «\w» // Match a single character that is a “whitespace character” (spaces, tabs, and line breaks) «\s» // Match a single digit 0..9 «\d» // Match a single digit 0..9 «\d» // Match the character “:” literally «:» // Match a single digit 0..9 «\d» // Match a single digit 0..9 «\d» // Assert position at the end of the string (or before the line break at the end of the string, if any) «$» -m -- 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/d/optout.

