[regexp:text[abc]]
[title[alphabet][text[abc]]
I have a tiddler called alphabet with the following contentaababc
abcdI want to create a filter expression that selects abc and abcd. So the result would be:abcabcd
I thought I would need to write something along the lines of:[regexp:text[abc]]
or[title[alphabet][text[abc]]
but at best variations on these types of method only give me the title as the result, which is:alphabetSo what filter expression would I need to make that shows the text content itself of the specific tiddler called alphabet?
--
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 tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/16a691fd-a5a5-4191-bb3b-bfd7d3bf6019%40googlegroups.com.
<$list filter="[title[alphabet]get[text]splitregexp[\n]prefix[abc]]">
</$list>
[title[alphabet]each:list-item[text]]