*Match titles that within words include 3 or more repeated "word"
characters*
*\B(\w)\1{2,}\B*
*"\B"* = NOT a word-boundary. It is an "anchor" of no size. It is
complementary to *"\b"* the anchor for word-boundary. "\B" will ONLY match
*inside
*"words".
*"\w"* = any single "word" character, i.e. [a-zA-Z0-9_]
*"\1"* = repeat match using character captured by group *"(\w)"*
*"{2,}"* = repeat 2 or more times (i.e. 3 or more in total)
*"\B" *= NOT a word-boundary.
Matches ...
The Dark Woooood
Index9996no
No matches ...
The band played "Ooooom-pa-pa"
The Item 999 is in stock
The Item999 is in stock
--
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 view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/8c45ec4f-7727-4c27-ab96-9e46b04182b6%40googlegroups.com.