I'm trying to create a regular expression which will find every occurrence of a sentence enclosed in "" on a single line. I have tried this "\".\"" which doesn't work because the dot in QRegExp matches everything including newlines.

Is there any other simple way to do this?

Dave