[tw] Re: Filter to select UPPERCASE titles

2017-04-05 Thread Douglas Counts
I left spaces out of my examples. So all caps with spaces is: value="^[A-Z\s]+$" If you will also accept ? or !, but only at the end, then do this: value="^[A-Z\s]+[!?]*$" If you had a tiddler titled "RELEASE 5.0.181-BETA", your current RegEx would have captured that too. "3" would also

[tw] Re: Filter to select UPPERCASE titles

2017-04-05 Thread Douglas Counts
Sorry to say, but your solution is faulty as you will get hits on *any* title without a lowercase letter. Naming a Tiddler "???" for example will also appear in your list. You should use: value="^[A-Z]+$" if you wish to capture all cap titles that may also end with exclamation points, do

Re: [tw] Re: Filter to select UPPERCASE titles

2017-04-01 Thread @TiddlyTweeter
the power of RegEx combined with TW is a box well worth opening IMO. in some ways much going on in TW is enhanced RegEx veiled in JavaScript :-). Best wishes Josiah On Saturday, 1 April 2017 09:24:12 UTC+2, AlexHough wrote: > > Ah! > > Thanks Danielo! > > very helpful, i was going crazy > >

Re: [tw] Re: Filter to select UPPERCASE titles

2017-04-01 Thread Mat
AlexHough wrote: > > > i know next to nothing about regex... could you recommend a good place to > look? > http://www.rexegg.com/ <:-) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

Re: [tw] Re: Filter to select UPPERCASE titles

2017-04-01 Thread Alex Hough
Ah! Thanks Danielo! very helpful, i was going crazy Alex On 31 March 2017 at 16:07, Danielo Rodríguez wrote: > Dear Alex, > > Regex101 is a great place to learn and experiment with. Just make sure > that you select the appropriate regex flavour. See the image attached > >

Re: [tw] Re: Filter to select UPPERCASE titles

2017-03-31 Thread Danielo Rodríguez
Dear Alex, Regex101 is a great place to learn and experiment with. Just make sure that you select the appropriate regex flavour. See the image attached

Re: [tw] Re: Filter to select UPPERCASE titles

2017-03-31 Thread Alex Hough
Thanks Mark! i know next to nothing about regex... could you recommend a good place to look? I've updated my test case Alex On 31 March 2017 at 14:38, 'Mark S.' via TiddlyWiki < tiddlywiki@googlegroups.com> wrote: > This one seems to work: > >

[tw] Re: Filter to select UPPERCASE titles

2017-03-31 Thread 'Mark S.' via TiddlyWiki
This one seems to work: value="^[^a-z]*$" On Friday, March 31, 2017 at 3:15:51 AM UTC-7, AlexHough wrote: > > Hello all, > > A set of tiddlers is formed by their titles being all upper case. > > INDEX > GLOSSARY > > I could tag these, but I wondered about selecting them based on regex >