> > > 1. all possible characters that typically follow a word in common text > i.e: > . OR , OR (space) OR ! OR ? OR : OR ; OR (spacechar) OR (end of text > field) OR .......I don't even know > > To simply match those characters create a character class *"[...]"* of them ...
([ .,;:!?]|$) Note that in character classes meta-characters *"."* and *"?" *no longer have any special meaning so do not need to be escaped. *"|"* is "alternation" within a "capture group" "*(...)*" *"$"* is "end-of-scope" (depends on regex setting whether that is end-of-field or end-of-line) Match results ... [image: Annotation 2019-08-24 130045.jpg] TT -- 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/9fddbe2e-b535-4e96-a430-c28f3822b08e%40googlegroups.com.

