Am Samstag, 1. März 2014 20:46:46 UTC+1 schrieb Jon:
>
> Sorry, Stephan I can't get this to work.
>
> Using, {{{ [field:created/^YYYYMM/] }}} how would I return the tiddlers
> created between 1/2/14 to 1/3/14?
>
>>
>> {{{ [field:created/^20140(2|301)/] }}}
where I assume that you want to include 2014-02-01 and 2014-03-01
The regular expression means:
^ : Start of the text
2014 : Match "2014" - The year
0 : Match "0" - The first digit of the month
( : this starts a group
2 : this matches a "2" as the second digit of the month
| : Alternative, so either match the "2" or
3 : Mathch "3" as the second digit of the month
01 : If the 3 matched, also match "01" for the day
) : End of the grouping
--
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.