I'm having a bit of a mind block for something that could be so obvious. I have a TextBrowser that's read only and I want to find specific text in a line, but the text may not be in consecutive words. For instance, I want the TextBrowser to scroll to the line saying "The quick brown fox jumped over the lazy dog" when somebody searches for "the quick brown over dog." I can't exactly feed the criteria to QTextEdit::Find() since it does an exact string match.

Any ideas?