How to find a word and punctuation

Eric

Beta Tester
Messages
876
I have a Greek language user Bible module that includes the diacritical marks (which are not present in the TR module that comes with SwordSearcher). I want to search for all verses that have the word ἔλεγον in them and also have a question mark in them (well, the Greek question mark looks like a semi-colon, so I should have called it that, I guess). How do I do that?

I suppose it'd be the same looking for an English word and some punctuation, but I don't know how to do that, either. Maybe it would be with the character string search, but I think there would need to be some wildcards between the word one is searching for and the punctuation.
 
Maybe a simple regex search for ἔλεγον.*\?
Wonderful, Bill! That did it. Thank you. I forgot about regex …
(Actually in the Greek module I searched for
Code:
ἔλεγον.*\;
since the way to mark a question in Greek is with the semicolon.)
 
Back
Top