This is probably not the most efficient way to do it, but you can use an arbitrary set of characters to separate sentences. The strategy is to first remove all newline characters, since they are irrelevant, then replace all separators by newline, so we have a single character to split the text into sentences. Then return the list of sentences which contain the keyword:
def findSentence(text, keyword) :
punct = (".", "!", "?") # sentence separators
text=text.replace("\n", " ").strip() # replace new lines by space, remove leading whitespace.
for p in punct : # replace each sentence sepatator by newline
text=text.replace(p, "\n")
return [s for s in text.split("\n") if keyword in s.split()]
if __name__ == '__main__' :
text = """
Murray victory was as routine as any win in a Wimbledon quarter-final can be for a home player. He will go into his Friday semi-final on a wave of desperate hype in the hope that he can become the first British man to reach a Wimbledon singles final since Bunny Austin in 1938. The march has been almost low key and that has appeared to suit Murray. \"I've obviously played Rafa at a lot of times at grand slams and I've beaten him before at grand slams. I haven't done it at Wimbledon. That's something I'd like to change on Friday. But it's an incredibly difficult, difficult task,\" he said. This line should definitely NOT BE SELECTED blahMurrayBlahblah!
"""
for s in findSentence(text, "Murray") :
print s
$ cat document.txt | grep "keyword"– user780363 Jun 30 '11 at 6:25I am being treated by Dr. House.is one sentence not two. Question and exclamation marks in parentheses (is this an example?) do not end the main sentence, just the sub-sentence. And with a quotation - he said, "I like olives." - the closing quotation mark comes after the period. – Blair Jun 30 '11 at 9:34