Hi Eca,
It depends, on how your tiddler titles are generated.
some Time ago I did some list plugins [1].
wiht <<list xCase ...>> it will be possible to filter like this.
tiddler: 27 June 2010
<<list xCase title '\d{2} '>>
^ .. start of line added by the macro
\d .. digit
{2} .. 2 digits and the space
Internaly regexp is used for the filtering.
regards Mario
http://hoster.peermore.com/recipes/ListPlugins/tiddlers.wiki/#XCaseListPlugin
or
http://apm-plugins.tiddlyspot.com/#XCaseListPlugin
On Jun 26, 6:42 pm, FND <[email protected]> wrote:
> > Is there there a way to fetchTiddlers using regular expressions?
>
> You're gonna have to write a bit of custom code:
> var matches = [];
> store.forEachTiddler(function(title, tiddler) {
> var isDated = title.search(/\d+-\d+-\d+/) != -1;
> if(isDated) }{
> matches.push(tiddler);
> }
> });
>
> HTH.
>
> -- F.
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/tiddlywiki?hl=en.