*Find titles with at least one German accented character ...*
^.*?[ßÄÖÜẞäöü]+?

Field: Title

*"^"* = start of "scope" (in this case the start of the Title field)

*".*?" *= match any character except line-breaks, but as few times as 
possible ("lazy" matching). 
Note: If you used *".*" *it would match the accented characters before we 
actually specifically matched them. *So it must be lazy*.

*[ßÄÖÜẞäöü]+?* = Match at least one German accented character.
Note: Once we match the first German accented character its not needed to 
continue to the end of the field.

*Matches these Titles, ->match<-* ...

->"Ü<-ber" is a German word. ↩︎
->The word "Ü<-ber" is used in German.↩︎



-- 
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/c8e4a095-6aa4-4e02-ad81-9afcb0113e9c%40googlegroups.com.

Reply via email to