Google Search – How to Search for Partial Sentences Using Operators

google-searchregex

I am looking for a particular combination of google hacking commands to find a sentence.
For example, I am looking for ”where eagles dare”
In this case, I don’t have part of a sentence like the following example:

where xxx dare

I am sure about the first and last word but I don’t know what is in the middle.
I used

“where” and “dare”

But it did not work properly.

Best Answer

You can use a wildcard operator when you don't remember a particular word. The asterisk (*) is used as a placeholder for any word(s) that you don't know in a particular phrase. Therefore it would be:

"where" * "dare"

or try:

"where * dare"

0

0