*Slightly more advanced use of the Negated Character Class* *Match titles with only ONE "/" slash* *^[^/]+?/[^/]+?$*
This is useful for people who use the "/" hierarchy in TW for naming Tiddlers. *"^"* = start of scope *[^/]+?* = do NOT match "/" one or more times (lazy) *"/" *= match "/" once *"[^/]+?"* = do NOT match "/" one or more times (lazy) *"$"* = end of scope You can test this at: http://tw-regexp.tiddlyspot.com/#RegExp%20Experimentation%20with%20Title 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/133fbdef-70e0-4766-abbd-16f75a867a94%40googlegroups.com.

