DEV Community

Cover image for 8 Advanced Google Search Operator to Ease Your Job
Muhimen
Muhimen

Posted on

8 Advanced Google Search Operator to Ease Your Job

When in doubt, Google it

As a developer, Google is one of the most useful tool you will ever use. However, if you want to get the most out of your tool, just a simple google search might not be what you are looking for. Sometimes you need to dig deep to get your way out. So, here is a list of some useful Google Search Operator that I use regularly.

1. " " for exact-match search

Wrap your search term with double quotes and Google will try to yield results consisting of the exact search term.

before quote
after quote

2. OR

If you want to get a search result for either X or Y then simply just search X OR Y or you can also do X | Y. However, if any of the search terms consists of more than one word, wrap them with quotes.

or without quote
or with quote

3. define

If you face some foreign word and want to know the meaning, instead of typing meaning of xyz try define:xyz

define

doesn't work all the time

4. Exclude(-)

Use minus sign(-) before any word that you don't want in the search result. For example -python programming

just the bare term
without exclude
with exclude

5. site

Only show the search result from the site you defined. site:dev.to react

site

6. intitle

Looks if a specific word you mentioned is in the URL. intitle:devto

intitle

7. intext

Similar to intitle but this time it will search for a specific word inside the actual content

intext

8. filetype

If you want the result file something different from the default HTML, you can use filetype like this filetype:txt programming

filetype

That was if from my end. But there are still quite a few for you to explore. If you are interested to see the possibilities, take a look at this blog

Top comments (0)